From a3a65b0f5374a575804fbdbc26c5e5dd3c626b9f Mon Sep 17 00:00:00 2001 From: Lixfel Date: Thu, 14 Mar 2024 11:42:01 +0100 Subject: [PATCH] Disable Replay by default (for now, until tests have been done) Signed-off-by: Lixfel --- src/de/steamwar/bungeecore/mods/Badlion.java | 2 +- src/de/steamwar/bungeecore/mods/Lunar.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/de/steamwar/bungeecore/mods/Badlion.java b/src/de/steamwar/bungeecore/mods/Badlion.java index ef2d90a5..4a58f0f0 100644 --- a/src/de/steamwar/bungeecore/mods/Badlion.java +++ b/src/de/steamwar/bungeecore/mods/Badlion.java @@ -41,7 +41,7 @@ public class Badlion extends BasicListener { json.add("LevelHead", disabled); json.add("MiniMap", disabled); json.add("MLG Cobweb", disabled); - //json.add("Replay", disabled); //TODO check if ReplayMod restrictions work + json.add("Replay", disabled); //TODO check if ReplayMod restrictions work json.add("Schematica", disabled); json.add("ToggleSneak", disabled); json.add("ToggleSprint", disabled); diff --git a/src/de/steamwar/bungeecore/mods/Lunar.java b/src/de/steamwar/bungeecore/mods/Lunar.java index 5c19d523..904d7bf9 100644 --- a/src/de/steamwar/bungeecore/mods/Lunar.java +++ b/src/de/steamwar/bungeecore/mods/Lunar.java @@ -52,7 +52,7 @@ public class Lunar { public Lunar() { Options modSettings = manager.getModule(ModSettingModule.class).getOptions(); - //modSettings.set(ModReplaymod.ENABLED, false); // TODO check if restrictions working + modSettings.set(ModReplaymod.ENABLED, false); // TODO check if restrictions working modSettings.set(ModFreelook.ENABLED, false); modSettings.set(ModHypixelMod.ENABLED, false); modSettings.set(ModMinimap.ENABLED, false);