v2.1.3: divine inspiration can now be cancelled if already IDed

This commit is contained in:
Evan Debenham
2023-06-20 11:27:06 -04:00
parent 8d11677483
commit 0d0231f7b5
@@ -131,7 +131,10 @@ public class PotionOfDivineInspiration extends ExoticPotion {
@Override
public void onBackPressed() {
//do nothing, prevents accidentally closing
//window can be closed if potion is already IDed
if (isIdentified()){
super.onBackPressed();
}
}
});