mirror of
https://gitlab.com/2009scape/2009scape.git
synced 2025-12-10 10:20:41 -07:00
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:
parent
8fef41e185
commit
f8d1e86118
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue