diff --git a/evennia/commands/default/comms.py b/evennia/commands/default/comms.py index 0ef77a7bb..992d8804a 100644 --- a/evennia/commands/default/comms.py +++ b/evennia/commands/default/comms.py @@ -1628,7 +1628,7 @@ class CmdIRC2Chan(COMMAND_DEFAULT_CLASS): irc_port=irc_port, irc_ssl=irc_ssl, ) - self.msg("Connection created. Beginner-Tutorial IRC bot.") + self.msg("Connection created. Starting IRC bot.") class CmdIRCStatus(COMMAND_DEFAULT_CLASS): diff --git a/evennia/commands/default/system.py b/evennia/commands/default/system.py index fa68adf19..590f8ded9 100644 --- a/evennia/commands/default/system.py +++ b/evennia/commands/default/system.py @@ -642,7 +642,7 @@ class CmdService(COMMAND_DEFAULT_CLASS): if service.running: caller.msg("That service is already running.") return - caller.msg(f"Beginner-Tutorial service '{self.args}' ...") + caller.msg(f"Starting service '{self.args}' ...") try: service.startService() except Exception as err: diff --git a/evennia/contrib/grid/extended_room/README.md b/evennia/contrib/grid/extended_room/README.md index f40f02037..2825852db 100644 --- a/evennia/contrib/grid/extended_room/README.md +++ b/evennia/contrib/grid/extended_room/README.md @@ -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: diff --git a/evennia/contrib/grid/extended_room/extended_room.py b/evennia/contrib/grid/extended_room/extended_room.py index 19e2b0bb7..f222ec08e 100644 --- a/evennia/contrib/grid/extended_room/extended_room.py +++ b/evennia/contrib/grid/extended_room/extended_room.py @@ -47,7 +47,6 @@ from collections import deque from django.conf import settings from django.db.models import Q - from evennia import ( CmdSet, DefaultRoom, diff --git a/evennia/contrib/grid/xyzgrid/launchcmd.py b/evennia/contrib/grid/xyzgrid/launchcmd.py index aa8591be2..24c72e953 100644 --- a/evennia/contrib/grid/xyzgrid/launchcmd.py +++ b/evennia/contrib/grid/xyzgrid/launchcmd.py @@ -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 " diff --git a/evennia/contrib/grid/xyzgrid/xymap_legend.py b/evennia/contrib/grid/xyzgrid/xymap_legend.py index 17f8252fc..a898bfe63 100644 --- a/evennia/contrib/grid/xyzgrid/xymap_legend.py +++ b/evennia/contrib/grid/xyzgrid/xymap_legend.py @@ -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 = "#" diff --git a/evennia/server/evennia_launcher.py b/evennia/server/evennia_launcher.py index 6cdca4b38..60ed76ab0 100644 --- a/evennia/server/evennia_launcher.py +++ b/evennia/server/evennia_launcher.py @@ -914,7 +914,7 @@ def reload_evennia(sprofiler=False, reset=False): send_instruction(SSTART, server_cmd) def _portal_not_running(fail): - print("Evennia not running. Beginner-Tutorial up ...") + print("Evennia not running. Starting ...") start_evennia() collectstatic() @@ -987,7 +987,7 @@ def reboot_evennia(pprofiler=False, sprofiler=False): wait_for_status(False, None, _portal_stopped) def _portal_not_running(fail): - print("Evennia not running. Beginner-Tutorial up ...") + print("Evennia not running. Starting ...") start_evennia() collectstatic() @@ -1013,7 +1013,7 @@ def start_server_interactive(): def _iserver(): _, server_twistd_cmd = _get_twistd_cmdline(False, False) server_twistd_cmd.append("--nodaemon") - print("Beginner-Tutorial Server in interactive mode (stop with Ctrl-C)...") + print("Starting Server in interactive mode (stop with Ctrl-C)...") try: Popen(server_twistd_cmd, env=getenv(), stderr=STDOUT).wait() except KeyboardInterrupt: @@ -1051,7 +1051,7 @@ def start_portal_interactive(): else: Popen(server_twistd_cmd, env=getenv(), bufsize=-1) - print("Beginner-Tutorial Portal in interactive mode (stop with Ctrl-C)...") + print("Starting Portal in interactive mode (stop with Ctrl-C)...") try: Popen(portal_twistd_cmd, env=getenv(), stderr=STDOUT).wait() except KeyboardInterrupt: diff --git a/evennia/utils/evmenu.py b/evennia/utils/evmenu.py index 3ca3aadbc..ff2804415 100644 --- a/evennia/utils/evmenu.py +++ b/evennia/utils/evmenu.py @@ -216,7 +216,7 @@ callable must be a module-global function on the form ## options - # Beginner-Tutorial the option-line with > + # Beginning the option-line with > # allows to perform different actions depending on # what is inserted.