Merge pull request #114 from Vatiken/master

Replaced missing semi-colon. -No Compile
This commit is contained in:
Thomas Arp 2022-11-05 12:53:30 +01:00 committed by GitHub
commit bde600051d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -685,7 +685,7 @@ void obj_to_room(struct obj_data *object, room_rnum room)
i->next_content = object; // add object at the end i->next_content = object; // add object at the end
} }
object->next_content = NULL; // mostly for sanity. should do nothing. object->next_content = NULL; // mostly for sanity. should do nothing.
IN_ROOM(object) = room IN_ROOM(object) = room;
object->carried_by = NULL; object->carried_by = NULL;
if (ROOM_FLAGGED(room, ROOM_HOUSE)) if (ROOM_FLAGGED(room, ROOM_HOUSE))
SET_BIT_AR(ROOM_FLAGS(room), ROOM_HOUSE_CRASH); SET_BIT_AR(ROOM_FLAGS(room), ROOM_HOUSE_CRASH);