removing inventory-removiitem prints

This commit is contained in:
minjaesong
2023-10-04 02:20:36 +09:00
parent 6529901e64
commit 4100d338a8
2 changed files with 4 additions and 4 deletions

View File

@@ -112,7 +112,7 @@ object WorldSimulator {
}
fun growOrKillGrass() {
repeat(2 * world.worldTime.timeDelta) {
repeat(2 * world.worldTime.timeDelta) { // TODO: season-dependent growth rate
val rx = rng.nextInt(updateXFrom, updateXTo + 1)
val ry = rng.nextInt(updateYFrom, updateYTo + 1)
val tile = world.getTileFromTerrain(rx, ry)