spigot change move speed of living entity creature

Solutions on MaxInterview for spigot change move speed of living entity creature by the best coders in the world

showing results for - "spigot change move speed of living entity creature"
Antonio
28 Jun 2017
1// wolf's default MS = 0.3
2double moveSpeed = ((Attributable)wolf).getAttribute(Attribute.GENERIC_MOVEMENT_SPEED).getValue();
3wolf.getAttribute(Attribute.GENERIC_MOVEMENT_SPEED).setBaseValue(0.5);