Skip to content

Commit 13f08af

Browse files
committed
SSSS patches will no longer block base-game code from executing
1 parent f4996d9 commit 13f08af

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

LabExtended/Patches/Functions/Settings/SettingsDisableResponsePatch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static class SettingsDisableResponsePatch
1414
public static bool Prefix(NetworkConnection conn, ref SSSClientResponse msg)
1515
{
1616
SettingsManager.OnResponseMessage(conn, msg);
17-
return false;
17+
return true;
1818
}
1919
}
2020
}

LabExtended/Patches/Functions/Settings/SettingsDisableStatusPatch.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static class SettingsDisableStatusPatch
1414
public static bool Prefix(NetworkConnection conn, ref SSSUserStatusReport msg)
1515
{
1616
SettingsManager.OnStatusMessage(conn, msg);
17-
return false;
17+
return true;
1818
}
1919
}
20-
}
20+
}

0 commit comments

Comments
 (0)