Skip to content

Commit

Permalink
Reduce spilling cooldown since its a bit more reasonable after the po…
Browse files Browse the repository at this point in the history
…tion nerf
  • Loading branch information
KnightMiner committed Feb 5, 2023
1 parent ae60c1a commit 81a9a12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public InteractionResult beforeEntityUse(IToolStackView tool, ModifierEntry modi
ToolAttackContext context = new ToolAttackContext(player, player, hand, target, target instanceof LivingEntity l ? l : null, false, 1.0f, false);
spillFluid(tool, modifier.getLevel(), context, fluid);
}
player.getCooldowns().addCooldown(tool.getItem(), 50);
player.getCooldowns().addCooldown(tool.getItem(), 20);
return InteractionResult.SUCCESS;
}
}
Expand Down

0 comments on commit 81a9a12

Please sign in to comment.