We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75b5b5b commit c9c8289Copy full SHA for c9c8289
1 file changed
Code/MethodSystem/Methods/RoundMethods/FriendlyFireMethod.cs
@@ -1,4 +1,5 @@
1
using JetBrains.Annotations;
2
+using LabApi.Features.Wrappers;
3
using SER.Code.ArgumentSystem.Arguments;
4
using SER.Code.ArgumentSystem.BaseArguments;
5
using SER.Code.MethodSystem.BaseMethods.Synchronous;
@@ -17,7 +18,6 @@ public class FriendlyFireMethod : SynchronousMethod
17
18
19
public override void Execute()
20
{
- ServerConsole.FriendlyFire = Args.GetBool("enabled?");
21
- ServerConfigSynchronizer.Singleton.RefreshMainBools();
+ Server.FriendlyFire = Args.GetBool("enabled?");
22
}
23
0 commit comments