mirror of
https://github.com/evennia/evennia.git
synced 2026-03-18 05:46:31 +01:00
Fixed creation. Time to start cleaning the .dbobj hierarchy.
This commit is contained in:
parent
e28d544fb0
commit
4e0b5be962
5 changed files with 13 additions and 8 deletions
|
|
@ -354,7 +354,7 @@ class Script(ScriptBase):
|
|||
the hooks called by the script machinery.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
This is the base TypeClass for all Scripts. Scripts describe events,
|
||||
timers and states in game, they can have a time component or describe
|
||||
|
|
@ -441,7 +441,7 @@ class Script(ScriptBase):
|
|||
|
||||
|
||||
"""
|
||||
super(Script, self).__init__()
|
||||
super(Script, self).__init__(*args, **kwargs)
|
||||
|
||||
def at_script_creation(self):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue