mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 22:36:31 +01:00
Fixed hook method descriptions.
This commit is contained in:
parent
23cd9e31b1
commit
6ae1123421
3 changed files with 15 additions and 15 deletions
|
|
@ -221,9 +221,6 @@ class ScriptClass(TypeClass):
|
|||
return True
|
||||
|
||||
# hooks
|
||||
def at_init(self):
|
||||
"called every typeclass initiation (reloads/restarts). not much use for scripts."
|
||||
pass
|
||||
def at_script_creation(self):
|
||||
"placeholder"
|
||||
pass
|
||||
|
|
@ -239,6 +236,9 @@ class ScriptClass(TypeClass):
|
|||
def at_repeat(self):
|
||||
"placeholder"
|
||||
pass
|
||||
def at_init(self):
|
||||
"called when typeclass re-caches. Usually not used for scripts."
|
||||
pass
|
||||
|
||||
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue