diff --git a/commands/default_cmdsets.py b/commands/default_cmdsets.py index 0f51821..66df5c4 100644 --- a/commands/default_cmdsets.py +++ b/commands/default_cmdsets.py @@ -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 diff --git a/typeclasses/characters.py b/typeclasses/characters.py index d5bbd94..5a506a5 100644 --- a/typeclasses/characters.py +++ b/typeclasses/characters.py @@ -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 diff --git a/typeclasses/objects.py b/typeclasses/objects.py index 50f5ec3..0b39039 100644 --- a/typeclasses/objects.py +++ b/typeclasses/objects.py @@ -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: diff --git a/typeclasses/rooms.py b/typeclasses/rooms.py index d342d8d..231bfe8 100644 --- a/typeclasses/rooms.py +++ b/typeclasses/rooms.py @@ -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):