mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 03:32:46 +01:00
SPIGOT-4132: Fix missing break in RedstoneWire.setFace
This commit is contained in:
parent
ca75fead2c
commit
2100017016
2 changed files with 8 additions and 0 deletions
|
@ -31,12 +31,16 @@ public abstract class CraftRedstoneWire extends CraftBlockData implements Redsto
|
|||
switch (face) {
|
||||
case NORTH:
|
||||
set(NORTH, connection);
|
||||
break;
|
||||
case EAST:
|
||||
set(EAST, connection);
|
||||
break;
|
||||
case SOUTH:
|
||||
set(SOUTH, connection);
|
||||
break;
|
||||
case WEST:
|
||||
set(WEST, connection);
|
||||
break;
|
||||
default:
|
||||
throw new IllegalArgumentException("Cannot have face " + face);
|
||||
}
|
||||
|
|
|
@ -41,12 +41,16 @@ public final class CraftRedstoneWire extends org.bukkit.craftbukkit.block.data.C
|
|||
switch (face) {
|
||||
case NORTH:
|
||||
set(NORTH, connection);
|
||||
break;
|
||||
case EAST:
|
||||
set(EAST, connection);
|
||||
break;
|
||||
case SOUTH:
|
||||
set(SOUTH, connection);
|
||||
break;
|
||||
case WEST:
|
||||
set(WEST, connection);
|
||||
break;
|
||||
default:
|
||||
throw new IllegalArgumentException("Cannot have face " + face);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue