Skip to content

Commit

Permalink
Fixed wrong tick clamping
Browse files Browse the repository at this point in the history
  • Loading branch information
ata4 committed Oct 21, 2015
1 parent dec043d commit 6b5d4f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static int clipTickCountToValid(int ticksSinceCreation) {
return MathHelper.clamp_int(
ticksSinceCreation,
EGG.startTicks,
ADULT.durationTicks
ADULT.startTicks
);
}
}

0 comments on commit 6b5d4f7

Please sign in to comment.