Fixed creation. Time to start cleaning the .dbobj hierarchy.

This commit is contained in:
Griatch 2014-12-20 19:29:38 +01:00
parent e28d544fb0
commit 4e0b5be962
5 changed files with 13 additions and 8 deletions

View file

@ -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):
"""