Skip to content

Commit

Permalink
Update Room.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
benpollarduk authored Nov 26, 2024
1 parent fa3f5fc commit ce28413
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NetAF/Assets/Locations/Room.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public Room(Identifier identifier, IDescription description, Exit[] exits = null
/// <param name="commands">This objects commands.</param>
/// <param name="interaction">The interaction.</param>
/// <param name="examination">The examination.</param>
public Room(Identifier identifier, IDescription description, Description introduction, Exit[] exits = null, Item[] items = null, CustomCommand[] commands = null, InteractionCallback interaction = null, ExaminationCallback examination = null)
public Room(Identifier identifier, IDescription description, IDescription introduction, Exit[] exits = null, Item[] items = null, CustomCommand[] commands = null, InteractionCallback interaction = null, ExaminationCallback examination = null)
{
Identifier = identifier;
Description = description;
Expand Down Expand Up @@ -533,4 +533,4 @@ public void RestoreFrom(RoomSerialization serialization)

#endregion
}
}
}

0 comments on commit ce28413

Please sign in to comment.