Merging 1.9.1 source: level changes
Differences: - Altar room turned off for now - Keep the guaranteed transmutation well
This commit is contained in:
committed by
Evan Debenham
parent
d894c7297f
commit
648246641a
@@ -77,7 +77,7 @@ public class DisintegrationTrap extends Trap {
|
||||
bag = (Bag)item;
|
||||
item = Random.element(bag.items);
|
||||
}
|
||||
if (item.level > 0 || item.unique) return;
|
||||
if (item.level() > 0 || item.unique) return;
|
||||
if (!item.stackable){
|
||||
item.detachAll(bag);
|
||||
GLog.w("the trap disintegrates your " + item.name() + "!");
|
||||
|
||||
@@ -85,7 +85,7 @@ public class GuardianTrap extends Trap {
|
||||
super();
|
||||
|
||||
weapon.enchant(null);
|
||||
weapon.degrade(weapon.level);
|
||||
weapon.degrade(weapon.level());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user