Fix GT replant sometimes planting floating plants

This commit is contained in:
nossr50
2020-11-10 13:17:58 -08:00
parent 7887232d93
commit 8f6819edc5
4 changed files with 72 additions and 7 deletions

View File

@ -28,7 +28,7 @@ public class StringUtils {
}
public static String ticksToSeconds(double ticks) {
return shortDecimal.format(ticks / 20) + "s";
return shortDecimal.format(ticks / 20);
}