remove trailing whitespace

This commit is contained in:
p2r3
2025-09-13 21:55:01 +03:00
parent e3589a02f0
commit bdb4e4b72c

View File

@@ -663,7 +663,7 @@ uint8_t isPassableBlock (uint8_t block) {
// Checks whether the given block is non-solid and spawnable
uint8_t isPassableSpawnBlock (uint8_t block) {
if ((block >= B_water && block < B_water + 8) ||
(block >= B_lava && block < B_lava + 4))
(block >= B_lava && block < B_lava + 4))
{
return 0;
}