mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-12-01 06:53:26 +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();
|
int z = os.readInt();
|
||||||
Block block = gworld.world.getBlockAt(x, y, z);
|
Block block = gworld.world.getBlockAt(x, y, z);
|
||||||
gworld.checkSign(block);
|
gworld.checkSign(block);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
os.close();
|
os.close();
|
||||||
|
@ -24,17 +24,15 @@ public class SIGNChest extends DSign {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onInit() {
|
public void onInit() {
|
||||||
if (sign.getTypeId() == 63) {
|
for (int i = -1; i <= 1; i++) {
|
||||||
for (int i = -1; i <= 1; i++) {
|
if (sign.getBlock().getRelative(i, 0, 0).getTypeId() == 54) {
|
||||||
if (sign.getBlock().getRelative(i, 0, 0).getTypeId() == 54) {
|
new GameChest(sign.getBlock().getRelative(i, 0, 0), gworld);
|
||||||
new GameChest(sign.getBlock().getRelative(i, 0, 0), gworld);
|
}
|
||||||
}
|
if (sign.getBlock().getRelative(0, 0, i).getTypeId() == 54) {
|
||||||
if (sign.getBlock().getRelative(0, 0, i).getTypeId() == 54) {
|
new GameChest(sign.getBlock().getRelative(0, 0, i), gworld);
|
||||||
new GameChest(sign.getBlock().getRelative(0, 0, i), gworld);
|
}
|
||||||
}
|
if (sign.getBlock().getRelative(0, i, 0).getTypeId() == 54) {
|
||||||
if (sign.getBlock().getRelative(0, i, 0).getTypeId() == 54) {
|
new GameChest(sign.getBlock().getRelative(0, i, 0), gworld);
|
||||||
new GameChest(sign.getBlock().getRelative(0, i, 0), gworld);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user