Fix hitting only rooted tile did not break trees

This commit is contained in:
DBotThePony 2024-04-22 20:48:19 +07:00
parent baf04fe447
commit 58ec1b7933
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -196,7 +196,10 @@ class ServerWorld private constructor(
for ((pos, chunk, roots) in actualPositions) {
for (root in roots) {
toDamageEntities.computeIfAbsent(root, Object2ObjectFunction { ObjectArraySet() }).add(pos)
val posList = toDamageEntities.computeIfAbsent(root, Object2ObjectFunction { ObjectArraySet() })
posList.add(pos)
posList.addAll(root.roots)
posList.add(root.tilePosition)
}
if (!isBackground) {