mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-26 18:21:35 +01:00
SPIGOT-4132: Fix missing break in RedstoneWire.setFace
By: md_5 <git@md-5.net>
This commit is contained in:
parent
969eecd95e
commit
7c7ba573a9
@ -31,12 +31,16 @@ public abstract class CraftRedstoneWire extends CraftBlockData implements Redsto
|
|||||||
switch (face) {
|
switch (face) {
|
||||||
case NORTH:
|
case NORTH:
|
||||||
set(NORTH, connection);
|
set(NORTH, connection);
|
||||||
|
break;
|
||||||
case EAST:
|
case EAST:
|
||||||
set(EAST, connection);
|
set(EAST, connection);
|
||||||
|
break;
|
||||||
case SOUTH:
|
case SOUTH:
|
||||||
set(SOUTH, connection);
|
set(SOUTH, connection);
|
||||||
|
break;
|
||||||
case WEST:
|
case WEST:
|
||||||
set(WEST, connection);
|
set(WEST, connection);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new IllegalArgumentException("Cannot have face " + face);
|
throw new IllegalArgumentException("Cannot have face " + face);
|
||||||
}
|
}
|
||||||
|
@ -41,12 +41,16 @@ public final class CraftRedstoneWire extends org.bukkit.craftbukkit.block.data.C
|
|||||||
switch (face) {
|
switch (face) {
|
||||||
case NORTH:
|
case NORTH:
|
||||||
set(NORTH, connection);
|
set(NORTH, connection);
|
||||||
|
break;
|
||||||
case EAST:
|
case EAST:
|
||||||
set(EAST, connection);
|
set(EAST, connection);
|
||||||
|
break;
|
||||||
case SOUTH:
|
case SOUTH:
|
||||||
set(SOUTH, connection);
|
set(SOUTH, connection);
|
||||||
|
break;
|
||||||
case WEST:
|
case WEST:
|
||||||
set(WEST, connection);
|
set(WEST, connection);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
throw new IllegalArgumentException("Cannot have face " + face);
|
throw new IllegalArgumentException("Cannot have face " + face);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user