From 58502b42dfc09e7449fee49cdd2411af521e4346 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 31 Aug 2014 08:42:02 +0200 Subject: [PATCH] Fixed an erroneous help entry for the create command, referring to the wrong default typeclass path. --- src/commands/default/building.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/default/building.py b/src/commands/default/building.py index ab1ffb267..e608031b3 100644 --- a/src/commands/default/building.py +++ b/src/commands/default/building.py @@ -392,13 +392,13 @@ class CmdCreate(ObjManipCommand): Creates one or more new objects. If typeclass is given, the object is created as a child of this typeclass. The typeclass script is - assumed to be located under game/gamesrc/types and any further + assumed to be located under game/gamesrc/objects and any further directory structure is given in Python notation. So if you have a - correct typeclass object defined in - game/gamesrc/types/examples/red_button.py, you could create a new + correct typeclass 'RedButton' defined in + game/gamesrc/objects/examples/red_button.py, you could create a new object of this type like this: - @create button;red : examples.red_button.RedButton + @create/drop button;red : examples.red_button.RedButton """