Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

Commit 3b3e6ab

Browse files
authored
New game version fix
1 parent 9d8c0e6 commit 3b3e6ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SCP Speech/EventHandlers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static Transform IntercomArea
5959
get
6060
{
6161
if (intercomeArea == null)
62-
intercomeArea = typeof(Intercom).GetField("area", BindingFlags.NonPublic | BindingFlags.Instance)?.GetValue(Intercom.host) as Transform;
62+
intercomeArea = typeof(Intercom).GetField("_area", BindingFlags.NonPublic | BindingFlags.Instance)?.GetValue(Intercom.host) as Transform;
6363

6464
if (intercomeArea == null)
6565
throw new MissingFieldException("Field for intercom not found.");

0 commit comments

Comments
 (0)