From fa490aba8984a02375d940672ec0d9a55ca5ac50 Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidOnSteam@users.noreply.github.com> Date: Mon, 14 Aug 2023 18:54:32 -0500 Subject: [PATCH] [PropUndoButton] Cleanup --- PropUndoButton/Main.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/PropUndoButton/Main.cs b/PropUndoButton/Main.cs index 8f95084..fae0f2a 100644 --- a/PropUndoButton/Main.cs +++ b/PropUndoButton/Main.cs @@ -26,14 +26,14 @@ public class PropUndoButton : MelonMod internal static List deletedProps = new List(); // audio clip names, InterfaceAudio adds "PropUndo_" prefix - const string sfx_spawn = "PropUndo_sfx_spawn"; - const string sfx_undo = "PropUndo_sfx_undo"; - const string sfx_redo = "PropUndo_sfx_redo"; - const string sfx_warn = "PropUndo_sfx_warn"; - const string sfx_deny = "PropUndo_sfx_deny"; + private const string sfx_spawn = "PropUndo_sfx_spawn"; + private const string sfx_undo = "PropUndo_sfx_undo"; + private const string sfx_redo = "PropUndo_sfx_redo"; + private const string sfx_warn = "PropUndo_sfx_warn"; + private const string sfx_deny = "PropUndo_sfx_deny"; - const int redoHistoryLimit = 20; // amount that can be in history at once - const int redoTimeoutLimit = 120; // seconds + private const int redoHistoryLimit = 20; // amount that can be in history at once + private const int redoTimeoutLimit = 120; // seconds public override void OnInitializeMelon() {