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}.")

View file

@ -1,6 +1,6 @@
{% comment %}
Allow to customize the menu that appears at the top of every Evennia
webpage. Copy this file to your game dir's web/template_overrides/website
webpage. Copy this file to your game dir's web/website
folder and edit it to add/remove links to the menu.
{% endcomment %}
{% load static %}