Implement hasty cooking skillcape perk (1 tick faster but 5 cooking levels lower for burn rate)

Add Nardah's "Clay Oven" to the list of cooking spots
Fix small burn inaccuracy with cooking gauntlets
This commit is contained in:
Avi Weinstock 2022-03-27 05:22:29 +00:00 committed by ceikry
parent 8fef41e185
commit f8d1e86118

View file

@ -190,7 +190,11 @@ public class StandardCookingPulse extends Pulse {
}
}
public boolean updateTutorial(Player player) {
return cook(player, object, burned, initial, product);
}
private Animation getAnimation(final Scenery object) {
return !object.getName().equalsIgnoreCase("fire") ? RANGE_ANIMATION : FIRE_ANIMATION;
return !object.getName().toLowerCase().equals("fire") ? RANGE_ANIMATION : FIRE_ANIMATION;
}
}