Fix Detonator for pressure plates and buttons
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
Ursprung
8f32793593
Commit
659f09cb82
@ -189,29 +189,22 @@ public class Detonator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static Detoblock getBlock(Block block) {
|
static Detoblock getBlock(Block block) {
|
||||||
|
if (block.getType() == Material.STONE_BUTTON) {
|
||||||
|
return Detoblock.STONE_BUTTON;
|
||||||
|
}
|
||||||
|
if (block.getType().name().contains("BUTTON")) {
|
||||||
|
return Detoblock.WOOD_BUTTON;
|
||||||
|
}
|
||||||
|
if (block.getType() == Material.HEAVY_WEIGHTED_PRESSURE_PLATE || block.getType() == Material.LIGHT_WEIGHTED_PRESSURE_PLATE) {
|
||||||
|
return Detoblock.WEIGHTED_PRESSURE_PLATE;
|
||||||
|
}
|
||||||
|
if (block.getType().name().contains("PRESSURE_PLATE")) {
|
||||||
|
return Detoblock.PRESSURE_PLATE;
|
||||||
|
}
|
||||||
|
|
||||||
switch (block.getType()) {
|
switch (block.getType()) {
|
||||||
case LEVER:
|
case LEVER:
|
||||||
return Detoblock.SWITCH;
|
return Detoblock.SWITCH;
|
||||||
case ACACIA_BUTTON:
|
|
||||||
case BIRCH_BUTTON:
|
|
||||||
case DARK_OAK_BUTTON:
|
|
||||||
case JUNGLE_BUTTON:
|
|
||||||
case OAK_BUTTON:
|
|
||||||
case SPRUCE_BUTTON:
|
|
||||||
return Detoblock.WOOD_BUTTON;
|
|
||||||
case STONE_BUTTON:
|
|
||||||
return Detoblock.STONE_BUTTON;
|
|
||||||
case ACACIA_PRESSURE_PLATE:
|
|
||||||
case BIRCH_PRESSURE_PLATE:
|
|
||||||
case DARK_OAK_PRESSURE_PLATE:
|
|
||||||
case JUNGLE_PRESSURE_PLATE:
|
|
||||||
case OAK_PRESSURE_PLATE:
|
|
||||||
case SPRUCE_PRESSURE_PLATE:
|
|
||||||
case STONE_PRESSURE_PLATE:
|
|
||||||
return Detoblock.PRESSURE_PLATE;
|
|
||||||
case HEAVY_WEIGHTED_PRESSURE_PLATE:
|
|
||||||
case LIGHT_WEIGHTED_PRESSURE_PLATE:
|
|
||||||
return Detoblock.WEIGHTED_PRESSURE_PLATE;
|
|
||||||
case TRIPWIRE:
|
case TRIPWIRE:
|
||||||
return Detoblock.TRIPWIRE;
|
return Detoblock.TRIPWIRE;
|
||||||
case NOTE_BLOCK:
|
case NOTE_BLOCK:
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren