Further reworking, naming the library folder 'evennia' instead of lib or src.
This commit is contained in:
parent
829e7493b1
commit
c7325a5032
241 changed files with 464 additions and 294 deletions
|
|
@ -16,7 +16,7 @@ this change, you have to convert them manually e.g. with the
|
|||
@typeclass command.
|
||||
|
||||
"""
|
||||
from ev import Character as DefaultCharacter
|
||||
from evennia import DefaultCharacter
|
||||
|
||||
|
||||
class Character(DefaultCharacter):
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ this change, you have to convert them manually e.g. with the
|
|||
@typeclass command.
|
||||
|
||||
"""
|
||||
from ev import Exit as DefaultExit
|
||||
from evennia import DefaultExit
|
||||
|
||||
|
||||
class Exit(DefaultExit):
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ this change, you have to convert them manually e.g. with the
|
|||
@typeclass command.
|
||||
|
||||
"""
|
||||
from ev import Object as DefaultObject
|
||||
from evennia import DefaultObject
|
||||
|
||||
|
||||
class Object(DefaultObject):
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ this change, you have to convert them manually e.g. with the
|
|||
@typeclass command.
|
||||
|
||||
"""
|
||||
from ev import Player as DefaultPlayer
|
||||
from evennia import DefaultPlayer
|
||||
|
||||
|
||||
class Player(DefaultPlayer):
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ this change, you have to convert them manually e.g. with the
|
|||
|
||||
"""
|
||||
|
||||
from ev import Room as DefaultRoom
|
||||
from evennia import DefaultRoom
|
||||
|
||||
|
||||
class Room(DefaultRoom):
|
||||
|
|
|
|||
|
|
@ -20,10 +20,10 @@ dropped connections etc.
|
|||
|
||||
"""
|
||||
|
||||
from ev import Script as BaseScript
|
||||
from evennia import Script
|
||||
|
||||
|
||||
class ExampleScript(BaseScript):
|
||||
class ExampleScript(Script):
|
||||
"""
|
||||
A script type is customized by redefining some or all of its hook
|
||||
methods and variables.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue