SteamWar/FightSystem
Archiviert
13
1

Not stable version

Signed-off-by: Yaruma3341 <yaruma3341@gmail.com>
Dieser Commit ist enthalten in:
Yaruma3341 2019-02-23 12:25:17 +01:00
Ursprung 1cb8b79f61
Commit ba981309c6
2 geänderte Dateien mit 4 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -72,6 +72,7 @@ public class FightSystem extends JavaPlugin {
plugin = this;
this.fileManager = new FileManager(plugin);
this.fightManager = new FightManager();
this.scoreboard = new Scoreboard(plugin);
//Load config
schemsizeX = fileManager.getIntegerFromConfig("Arena.Schemsize.x");

Datei anzeigen

@ -39,9 +39,9 @@ public class Scoreboard {
this.PREFIX = FightSystem.getPlugin().getFileManager().getStringFromConfig("Output.TeamRedColor");
this.NAME = FightSystem.getPlugin().getFileManager().getStringFromConfig("Output.TeamRedName");
}
if(getIndexDisplay(index) == Fight.redTeam) {
this.PREFIX = FightSystem.getPlugin().getFileManager().getStringFromConfig("Output.TeamRedColor");
this.NAME = FightSystem.getPlugin().getFileManager().getStringFromConfig("Output.TeamRedName");
if(getIndexDisplay(index) == Fight.blueTeam) {
this.PREFIX = FightSystem.getPlugin().getFileManager().getStringFromConfig("Output.TeamBlueColor");
this.NAME = FightSystem.getPlugin().getFileManager().getStringFromConfig("Output.TeamBlueName");
}
objective.setDisplaySlot(DisplaySlot.SIDEBAR);