Remove weird auto-replace strings here and there
This commit is contained in:
parent
23038be08f
commit
26ff5d4206
8 changed files with 12 additions and 13 deletions
|
|
@ -132,7 +132,7 @@ with
|
|||
> room.add_room_state("summer", "empty")
|
||||
> room.get_stateful_desc()
|
||||
|
||||
This is a nice beach. It is completely empty
|
||||
This is a nice beach. It is completely empty.
|
||||
|
||||
> room.remove_room_state("empty")
|
||||
> room.add_room_state("full")
|
||||
|
|
@ -140,7 +140,7 @@ with
|
|||
|
||||
This is a nice beach. It is full of people.
|
||||
|
||||
There are four time-of-day states that are meant to be used with these tags. The
|
||||
There are four default time-of-day states that are meant to be used with these tags. The
|
||||
room tracks and changes these automatically. By default they are 'morning',
|
||||
'afternoon', 'evening' and 'night'. You can get the current time-slot with
|
||||
`room.get_time_of_day`. You can control them with
|
||||
|
|
@ -148,7 +148,7 @@ room tracks and changes these automatically. By default they are 'morning',
|
|||
```
|
||||
ExtendedRoom.hours_per_day # default 24
|
||||
ExtendedRoom.times_of_day # dict of {season: (start, end), ...} where
|
||||
# the start/end are given as fractions of the day
|
||||
# the start/end are given as fractions of the day.
|
||||
```
|
||||
|
||||
You use these inside descriptions as normal:
|
||||
|
|
|
|||
|
|
@ -47,7 +47,6 @@ from collections import deque
|
|||
|
||||
from django.conf import settings
|
||||
from django.db.models import Q
|
||||
|
||||
from evennia import (
|
||||
CmdSet,
|
||||
DefaultRoom,
|
||||
|
|
|
|||
|
|
@ -332,7 +332,7 @@ def _option_spawn(*suboptions):
|
|||
print("Aborted.")
|
||||
return
|
||||
|
||||
print("Beginner-Tutorial spawn ...")
|
||||
print("Starting spawn ...")
|
||||
grid.spawn(xyz=(x, y, z))
|
||||
print(
|
||||
"... spawn complete!\nIt's recommended to reload the server to refresh caches if this "
|
||||
|
|
|
|||
|
|
@ -1163,7 +1163,7 @@ class BasicMapNode(MapNode):
|
|||
|
||||
class InterruptMapNode(MapNode):
|
||||
"""A point of interest node/room. Pathfinder will ignore but auto-stepper will
|
||||
stop here if passing through. Beginner-Tutorial from here is fine."""
|
||||
stop here if passing through. Starting from here is fine."""
|
||||
|
||||
symbol = "I"
|
||||
display_symbol = "#"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue