v1.3.0: fixed toolkit showing warmup time when cursed

This commit is contained in:
Evan Debenham
2022-05-16 16:32:45 -04:00
parent fc70544905
commit 4249ac6228

View File

@@ -141,7 +141,7 @@ public class AlchemistsToolkit extends Artifact {
@Override
public String status() {
if (isEquipped(Dungeon.hero) && warmUpDelay > 0){
if (isEquipped(Dungeon.hero) && warmUpDelay > 0 && !cursed){
return Messages.format( "%d%%", 100 - (int)warmUpDelay );
} else {
return super.status();