Replaced missing semi-colon. -No Compile

This commit is contained in:
Joseph 2022-11-04 21:02:35 -03:00
parent 8f67dd880c
commit 0ee3aac10d

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
}
object->next_content = NULL; // mostly for sanity. should do nothing.
IN_ROOM(object) = room
IN_ROOM(object) = room;
object->carried_by = NULL;
if (ROOM_FLAGGED(room, ROOM_HOUSE))
SET_BIT_AR(ROOM_FLAGS(room), ROOM_HOUSE_CRASH);