mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
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}.")
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue