Skip to content

Commit

Permalink
Fix some tiny mistakes in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
scp222thj committed Sep 3, 2024
1 parent b58ec1c commit d269c01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Patches/ChatControllerPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static void Postfix(ChatBubble __instance){


[HarmonyPatch(typeof(ChatController), nameof(ChatController.Update))]
public static class ChatJailBreak_FreeChatInputField_OnFieldChanged_Prefix
public static class ChatController_Update
{
// Postfix patch of FreeChatInputField.OnFieldChanged to unlock extra chat capabilities
public static void Postfix(ChatController __instance)
Expand Down
6 changes: 4 additions & 2 deletions src/UI/CheatToggles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public struct CheatToggles

//ESP
public static bool fullBright;
public static bool alwaysChat;
public static bool seeGhosts;
public static bool seeRoles;
public static bool seeDisguises;
Expand All @@ -59,6 +58,10 @@ public struct CheatToggles
public static bool tracersBodies;
public static bool colorBasedTracers;
public static bool distanceBasedTracers;

//Chat
public static bool alwaysChat;
public static bool chatJailbreak;

//Ship
public static bool closeMeeting;
Expand All @@ -85,7 +88,6 @@ public struct CheatToggles
public static bool unlockFeatures = true;
public static bool freeCosmetics = true;
public static bool avoidBans = true;
public static bool chatJailbreak;

public static void DisablePPMCheats(string variableToKeep)
{
Expand Down

0 comments on commit d269c01

Please sign in to comment.