Fix prepare recoloring
Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Ursprung
5ed30e9123
Commit
5945f3c148
@ -118,7 +118,7 @@ public class FightSchematic extends StateDependent {
|
||||
|
||||
private void paste(){
|
||||
FreezeWorld freezer = new FreezeWorld();
|
||||
DyeColor c = ColorConverter.chat2dye(team.getColor());
|
||||
DyeColor c = ArenaMode.AntiPrepare.contains(Config.mode) ? ColorConverter.chat2dye(team.getColor()) : DyeColor.PINK;
|
||||
|
||||
try {
|
||||
VersionedRunnable.call(new VersionedRunnable(() -> {
|
||||
@ -126,25 +126,25 @@ public class FightSchematic extends StateDependent {
|
||||
FightTeam_8.replaceTeamColor(clipboard, c);
|
||||
FightTeam_8.pasteSchematic(clipboard, region, rotate);
|
||||
} catch (NoClipboardException | WorldEditException ex) {
|
||||
throw new SecurityException("Error pasting arena in schematic", ex);
|
||||
throw new SecurityException("Error pasting schematic", ex);
|
||||
}
|
||||
}, 8), new VersionedRunnable(() -> {
|
||||
try {
|
||||
FightTeam_12.replaceTeamColor(clipboard, c);
|
||||
FightTeam_8.pasteSchematic(clipboard, region, rotate);
|
||||
} catch (NoClipboardException | WorldEditException ex) {
|
||||
throw new SecurityException("Error pasting arena in schematic", ex);
|
||||
throw new SecurityException("Error pasting schematic", ex);
|
||||
}
|
||||
}, 12), new VersionedRunnable(() -> {
|
||||
try {
|
||||
FightTeam_14.replaceTeamColor(clipboard, c);
|
||||
FightTeam_14.pasteSchematic(clipboard, region, rotate);
|
||||
} catch (NoClipboardException | WorldEditException ex) {
|
||||
throw new SecurityException("Error pasting arena in schematic", ex);
|
||||
throw new SecurityException("Error pasting schematic", ex);
|
||||
}
|
||||
}, 14));
|
||||
} catch (SecurityException securityException) {
|
||||
team.broadcast(FightSystem.PREFIX + "§cFehler beim Pasten der Schematic");
|
||||
FightSystem.shutdown(FightSystem.PREFIX + "§cFehler beim Pasten der Schematic");
|
||||
throw securityException;
|
||||
}
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren