Fix references to contrib and ev. Allows Ampoule tests to run. They're severely broken, however.

This commit is contained in:
Jonathan Piacenti 2015-02-22 18:24:54 -06:00 committed by Griatch
parent c03bac5efd
commit 65adb0982b
18 changed files with 80 additions and 51 deletions

View file

@ -23,8 +23,8 @@ mob implementation.
"""
from evennia import Object, CmdSet, default_cmds
from contrib import menusystem
from evennia import DefaultObject, CmdSet, default_cmds
from evennia.contrib import menusystem
#
@ -110,7 +110,7 @@ CONV = {"START": {"text": "Hello there, how can I help you?",
}
class TalkingNPC(Object):
class TalkingNPC(DefaultObject):
"""
This implements a simple Object using the talk command and using the
conversation defined above. .