also "and" -> "&&"

develop
myk002 2021-06-19 13:52:07 -07:00
parent dfc938a99d
commit 1670cfab05
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 1 additions and 1 deletions

@ -728,7 +728,7 @@ static void post_process_dug_tiles(color_ostream &out,
if (to.bits.item) {
for (auto item : world->items.other.IN_PLAY) {
if (item->pos == pos and item->flags.bits.on_ground)
if (item->pos == pos && item->flags.bits.on_ground)
item->moveToGround(
resting_pos.x, resting_pos.y, resting_pos.z);
}