SteamWar/FightSystem
Archiviert
13
1

Better naming
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
zOnlyKroks 2021-12-22 19:22:13 +01:00
Ursprung 96f1da0aef
Commit e060e2e7a6
3 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen

Datei anzeigen

@ -42,7 +42,7 @@ Arena:
# If ground walkable, teams can walk below the lower arena border during setup
GroundWalkable: true # defaults to true if missing
# Disable snow melt
SnowMelt: false
DisableSnowMelt: false
Schematic:
# The size of the schematics
Size:

Datei anzeigen

@ -69,7 +69,7 @@ public class Config {
public static final int PreperationArea;
public static final int WaterDepth;
public static final boolean GroundWalkable;
public static final boolean SnowMelt;
public static final boolean DisableSnowMelt;
//schematic parameter
public static final boolean RanksEnabled;
@ -165,7 +165,7 @@ public class Config {
int schem2BorderZ = config.getInt("Arena.Schem2Border.z", 24);
PreperationArea = config.getInt("Arena.BorderFromSchematic", 12);
GroundWalkable = config.getBoolean("Arena.GroundWalkable", true);
SnowMelt = config.getBoolean("Arena.SnowMelt", false);
DisableSnowMelt = config.getBoolean("Arena.DisableSnowMelt", false);
int schemsizeX = config.getInt("Schematic.Size.x");
int schemsizeY = config.getInt("Schematic.Size.y");

Datei anzeigen

@ -17,7 +17,7 @@ public class BlockFadeListener implements Listener {
@EventHandler
public void onBlockFade(BlockFadeEvent event) {
if(!Config.SnowMelt) return;
if(!Config.DisableSnowMelt) return;
if (event.getBlock().getType() == Material.SNOW_BLOCK || event.getBlock().getType() == Material.SNOW || event.getBlock().getType() == Material.ICE) {
event.setCancelled(true);
}