Further reworking, naming the library folder 'evennia' instead of lib or src.

This commit is contained in:
Griatch 2015-01-07 13:36:57 +01:00
parent 829e7493b1
commit c7325a5032
241 changed files with 464 additions and 294 deletions

View file

@ -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):

View file

@ -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):

View file

@ -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):

View file

@ -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):

View file

@ -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):

View file

@ -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.