Made tutorial_world run on devel, it had a few deprecated imports and also the path to the build file given in the limbo desc was not right anymore.
This commit is contained in:
parent
ec4e985c39
commit
eb738ebad8
4 changed files with 54 additions and 40 deletions
|
|
@ -8,9 +8,9 @@ object based on that mobile class.
|
|||
import random, time
|
||||
from django.conf import settings
|
||||
|
||||
from evennia import search_object, utils, Script
|
||||
from contrib.tutorial_world import objects as tut_objects
|
||||
from contrib.tutorial_world import scripts as tut_scripts
|
||||
from evennia import search_object, utils, DefaultScript
|
||||
from evennia.contrib.tutorial_world import objects as tut_objects
|
||||
from evennia.contrib.tutorial_world import scripts as tut_scripts
|
||||
|
||||
BASE_CHARACTER_TYPECLASS = settings.BASE_CHARACTER_TYPECLASS
|
||||
|
||||
|
|
@ -88,7 +88,7 @@ class Mob(tut_objects.TutorialObject):
|
|||
#
|
||||
#------------------------------------------------------------
|
||||
|
||||
class AttackTimer(Script):
|
||||
class AttackTimer(DefaultScript):
|
||||
"""
|
||||
This script is what makes an eneny "tick".
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue