Anti Ice and Snow Melt #308
@ -42,7 +42,7 @@ Arena:
|
|||||||
# If ground walkable, teams can walk below the lower arena border during setup
|
# If ground walkable, teams can walk below the lower arena border during setup
|
||||||
GroundWalkable: true # defaults to true if missing
|
GroundWalkable: true # defaults to true if missing
|
||||||
# Disable snow melt
|
# Disable snow melt
|
||||||
SnowMelt: false
|
DisableSnowMelt: false
|
||||||
Schematic:
|
Schematic:
|
||||||
# The size of the schematics
|
# The size of the schematics
|
||||||
Size:
|
Size:
|
||||||
|
@ -69,7 +69,7 @@ public class Config {
|
|||||||
public static final int PreperationArea;
|
public static final int PreperationArea;
|
||||||
public static final int WaterDepth;
|
public static final int WaterDepth;
|
||||||
public static final boolean GroundWalkable;
|
public static final boolean GroundWalkable;
|
||||||
public static final boolean SnowMelt;
|
public static final boolean DisableSnowMelt;
|
||||||
|
|
||||||
//schematic parameter
|
//schematic parameter
|
||||||
public static final boolean RanksEnabled;
|
public static final boolean RanksEnabled;
|
||||||
@ -165,7 +165,7 @@ public class Config {
|
|||||||
int schem2BorderZ = config.getInt("Arena.Schem2Border.z", 24);
|
int schem2BorderZ = config.getInt("Arena.Schem2Border.z", 24);
|
||||||
PreperationArea = config.getInt("Arena.BorderFromSchematic", 12);
|
PreperationArea = config.getInt("Arena.BorderFromSchematic", 12);
|
||||||
GroundWalkable = config.getBoolean("Arena.GroundWalkable", true);
|
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 schemsizeX = config.getInt("Schematic.Size.x");
|
||||||
int schemsizeY = config.getInt("Schematic.Size.y");
|
int schemsizeY = config.getInt("Schematic.Size.y");
|
||||||
|
@ -17,7 +17,7 @@ public class BlockFadeListener implements Listener {
|
|||||||
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
Lixfel markierte diese Unterhaltung als gelöst
|
|||||||
public void onBlockFade(BlockFadeEvent event) {
|
public void onBlockFade(BlockFadeEvent event) {
|
||||||
Lixfel markierte diese Unterhaltung als gelöst
Lixfel
hat
Sind diese Material-Names auch schon seit 1.12 verfügbar? Sind diese Material-Names auch schon seit 1.12 verfügbar?
zOnlyKroks
hat
jop jop
|
|||||||
if(!Config.SnowMelt) return;
|
if(!Config.DisableSnowMelt) return;
|
||||||
Lixfel
hat
Uahhh, inperfomant! ;). Ne, dafür haben wir extra das StateDependent-System. Du solltest statt ArenaMode.All einfach Config.DisableSnowMelt einsetzen können, dann ist der Listener nur aktiv, wenn auch die Configoption aktiv ist. Uahhh, inperfomant! ;). Ne, dafür haben wir extra das StateDependent-System. Du solltest statt ArenaMode.All einfach Config.DisableSnowMelt einsetzen können, dann ist der Listener nur aktiv, wenn auch die Configoption aktiv ist.
|
|||||||
if (event.getBlock().getType() == Material.SNOW_BLOCK || event.getBlock().getType() == Material.SNOW || event.getBlock().getType() == Material.ICE) {
|
if (event.getBlock().getType() == Material.SNOW_BLOCK || event.getBlock().getType() == Material.SNOW || event.getBlock().getType() == Material.ICE) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren
Gibt es dieses Event schon in der 1.8?
ja tut es