From 573a8e14e405f642f04ee5822c70c45ecb50d6b2 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Wed, 14 Apr 2021 20:40:02 +0200 Subject: [PATCH] Fix Bow Recording.java --- FightSystem_API/src/de/steamwar/fightsystem/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FightSystem_API/src/de/steamwar/fightsystem/Config.java b/FightSystem_API/src/de/steamwar/fightsystem/Config.java index 59ebb26..1fcf4e8 100644 --- a/FightSystem_API/src/de/steamwar/fightsystem/Config.java +++ b/FightSystem_API/src/de/steamwar/fightsystem/Config.java @@ -384,6 +384,6 @@ public class Config { return ArenaMode.Test.contains(mode); } public static boolean recording(){ - return true;//mode == ArenaMode.EVENT; + return mode == ArenaMode.EVENT; } }