Skip to content

Commit

Permalink
Reduce moose slowdown
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmeow committed Nov 22, 2019
1 parent ecd241b commit fa449c2
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ protected void registerAttributes() {
this.getAttributes().registerAttribute(SharedMonsterAttributes.ATTACK_DAMAGE);
this.getAttribute(SharedMonsterAttributes.ATTACK_DAMAGE).setBaseValue(4.5D);
}


@Override
protected float getWaterSlowDown() {
return 0.98F;
}

protected EntityAIEatGrassCustom provideEatTask() {
return new EntityAIEatGrassCustom(this, 50, 50, eater -> {
Direction facing = eater.getHorizontalFacing();
Expand Down

0 comments on commit fa449c2

Please sign in to comment.