fix: stone cooldown check needs to check for > 0
This commit is contained in:
		@ -50,7 +50,7 @@ public class StoneCooldownManager {
 | 
			
		||||
     * @return Whether or not the stone is on cooldown
 | 
			
		||||
     */
 | 
			
		||||
    public boolean onCooldown(StoneType stone) {
 | 
			
		||||
        return cooldowns.containsKey(stone);
 | 
			
		||||
        return cooldowns.getOrDefault(stone, 0) > 0;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user