Fix preposition for seasonal names in extended room prefix

This commit is contained in:
Griatch 2023-12-04 15:26:01 +01:00
parent e2a7c54e24
commit 3e6ea6a8bf
2 changed files with 2 additions and 2 deletions

View file

@ -974,7 +974,7 @@ class CmdExtendedRoomGameTime(default_cmds.MuxCommand):
season = location.get_season()
timeslot = location.get_time_of_day()
prep = "a" if season == "autumn" else "an"
prep = "an" if season == "autumn" else "a"
self.caller.msg(f"It's {prep} {season} day, in the {timeslot}.")