Fix Rumble spell slowness level
This commit is contained in:
parent
b90e879d4b
commit
1425a2aaed
@ -278,10 +278,12 @@ public class SpellRumble extends Spell implements SpellClickBlock, SpellClick
|
|||||||
|
|
||||||
if (entity instanceof Player)
|
if (entity instanceof Player)
|
||||||
{
|
{
|
||||||
|
// Why does Slowing by 2 apply slowness 1? The world may never know.
|
||||||
|
// As such, we subtract one from the spellLevel and ask no more questions
|
||||||
Wizards.getArcadeManager()
|
Wizards.getArcadeManager()
|
||||||
.GetCondition()
|
.GetCondition()
|
||||||
.Factory()
|
.Factory()
|
||||||
.Slow("Rumble", (LivingEntity) entity, player, 3, spellLevel, false, false,
|
.Slow("Rumble", (LivingEntity) entity, player, 3, spellLevel-1, false, false,
|
||||||
false, false);
|
false, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user