* Improve the entity ID system, and add priority system. We should no longer have clashes.

This commit is contained in:
iProgramInCpp
2023-08-07 23:05:30 +03:00
parent e028fc6495
commit 1b97875dd6
9 changed files with 78 additions and 6 deletions

View File

@@ -81,6 +81,9 @@ bool SandTile::isFree(Level* level, int x, int y, int z)
void SandTile::tick(Level* level, int x, int y, int z, Random* random)
{
if (level->field_11)
return;
checkSlide(level, x, y, z);
}