Fix preposition for seasonal names in extended room prefix
This commit is contained in:
parent
e2a7c54e24
commit
3e6ea6a8bf
2 changed files with 2 additions and 2 deletions
|
|
@ -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}.")
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue