From c2568e3df2b4f1602cb39561d031347e5bbce65c Mon Sep 17 00:00:00 2001 From: Charlie Wang Date: Fri, 12 Jul 2013 08:41:42 -0400 Subject: [PATCH] sheep jump twice as often --- src/gibstick/bukkit/discosheep/DiscoParty.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gibstick/bukkit/discosheep/DiscoParty.java b/src/gibstick/bukkit/discosheep/DiscoParty.java index d734ca1..acb74e2 100644 --- a/src/gibstick/bukkit/discosheep/DiscoParty.java +++ b/src/gibstick/bukkit/discosheep/DiscoParty.java @@ -178,7 +178,9 @@ public class DiscoParty { if (doFireworks) { spawnRandomFireworkAtSheep(sheep); } - if(doJump){ + } + if (state % 4 == 0) { + if (doJump) { jumpSheep(sheep); } }