fix enum warn

isolation_bkp/dynres
Dominik Madarász 2022-09-12 07:08:22 +00:00 committed by GitHub
parent 2516be7920
commit a95606d21b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 6 deletions

View File

@ -92,6 +92,12 @@ void item_use(ecs_world_t *ecs, ItemDrop *it, Position p, uint64_t udata) {
it->quantity--;
}break;
case UKIND_DELETE:
case UKIND_END_PLACE:
case UKIND_PROXY:
break;
}
}