SteamWar/FightSystem
Archiviert
13
1
Dieses Repository wurde am 2024-08-05 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
FightSystem/src/me/yaruma/fightsystem/winconditions/Methods.java
Yaruma3341 2d03c39883 Added method getFightPlayer() to Fight class;
Code Cleanup PlayerDeathListener;
Added WinConditions;
Added Win/Lose/Undecided and give money to FightPlayers;
Added money variables to config.yml;

Signed-off-by: Yaruma3341 <yaruma3341@gmail.com>
2019-02-17 20:29:32 +01:00

13 Zeilen
291 B
Java

package me.yaruma.fightsystem.winconditions;
import me.yaruma.fightsystem.FightSystem;
public class Methods {
public static boolean isEnabled(String conditionPath) {
return FightSystem.getPlugin().getFileManager().getBooleanFromConfig(conditionPath) ? true : false;
}
}