forked from vantablack/vantaMOO
Move RPSystem
This commit is contained in:
parent
91d2c19d1e
commit
c9d5639d18
4 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ from evennia.contrib.game_systems import mail
|
|||
from evennia.contrib.game_systems.multidescer import CmdMultiDesc
|
||||
from evennia.contrib.grid.ingame_map_display import MapDisplayCmdSet
|
||||
from evennia.contrib.grid import simpledoor
|
||||
from evennia.contrib.rpg.rpsystem import RPSystemCmdSet
|
||||
from lib.rpsystem.rpsystem import RPSystemCmdSet
|
||||
from evennia.contrib.game_systems.clothing import ClothedCharacterCmdSet
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ is setup to be the "default" character type created by the default
|
|||
creation commands.
|
||||
|
||||
"""
|
||||
from evennia.contrib.rpg.rpsystem import ContribRPCharacter
|
||||
from lib.rpsystem import ContribRPCharacter
|
||||
from evennia.contrib.game_systems.clothing import ClothedCharacter
|
||||
|
||||
# rpsystem
|
||||
|
|
|
@ -10,7 +10,7 @@ the other types, you can do so by adding this as a multiple
|
|||
inheritance.
|
||||
|
||||
"""
|
||||
from evennia.contrib.rpg.rpsystem import ContribRPObject
|
||||
from lib.rpsystem import ContribRPObject
|
||||
from evennia.contrib.game_systems.clothing import ContribClothing as Clothes
|
||||
|
||||
class ObjectParent:
|
||||
|
|
|
@ -4,7 +4,7 @@ Room
|
|||
Rooms are simple containers that has no location of their own.
|
||||
|
||||
"""
|
||||
from evennia.contrib.rpg.rpsystem import ContribRPRoom
|
||||
from lib.rpsystem import ContribRPRoom
|
||||
|
||||
# rpsystem
|
||||
class Room(ContribRPRoom):
|
||||
|
|
Loading…
Reference in a new issue