diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java index cc032fea9..c64d407f2 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/VaultLevel.java @@ -237,14 +237,7 @@ public class VaultLevel extends Level { //for now @Override protected void createItems() { - Random.pushGenerator(Random.Long()); - ArrayList bonesItems = Bones.get(); - if (bonesItems != null) { - for (Item i : bonesItems) { - drop(i, entrance()-width()).setHauntedIfCursed().type = Heap.Type.REMAINS; - } - } - Random.popGenerator(); + //do nothing for now } @Override