mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-28 13:36:33 +01:00
Fixed chest signs not working properly
Signed-off-by: Grafe <flingelfrank@hotmail.com>
This commit is contained in:
parent
cb663d787e
commit
b7bcacf32b
@ -205,7 +205,6 @@ public class GameWorld {
|
||||
int z = os.readInt();
|
||||
Block block = gworld.world.getBlockAt(x, y, z);
|
||||
gworld.checkSign(block);
|
||||
|
||||
}
|
||||
|
||||
os.close();
|
||||
|
@ -24,17 +24,15 @@ public class SIGNChest extends DSign {
|
||||
|
||||
@Override
|
||||
public void onInit() {
|
||||
if (sign.getTypeId() == 63) {
|
||||
for (int i = -1; i <= 1; i++) {
|
||||
if (sign.getBlock().getRelative(i, 0, 0).getTypeId() == 54) {
|
||||
new GameChest(sign.getBlock().getRelative(i, 0, 0), gworld);
|
||||
}
|
||||
if (sign.getBlock().getRelative(0, 0, i).getTypeId() == 54) {
|
||||
new GameChest(sign.getBlock().getRelative(0, 0, i), gworld);
|
||||
}
|
||||
if (sign.getBlock().getRelative(0, i, 0).getTypeId() == 54) {
|
||||
new GameChest(sign.getBlock().getRelative(0, i, 0), gworld);
|
||||
}
|
||||
for (int i = -1; i <= 1; i++) {
|
||||
if (sign.getBlock().getRelative(i, 0, 0).getTypeId() == 54) {
|
||||
new GameChest(sign.getBlock().getRelative(i, 0, 0), gworld);
|
||||
}
|
||||
if (sign.getBlock().getRelative(0, 0, i).getTypeId() == 54) {
|
||||
new GameChest(sign.getBlock().getRelative(0, 0, i), gworld);
|
||||
}
|
||||
if (sign.getBlock().getRelative(0, i, 0).getTypeId() == 54) {
|
||||
new GameChest(sign.getBlock().getRelative(0, i, 0), gworld);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user