Add at_object_creation() to basicobject.py. I'll be adding at_object_destruction() later, ran out of time right now to do so. Also added some elaboration on the purpose of __init__ to basicobject.py.

This commit is contained in:
Greg Taylor 2009-04-16 14:37:58 +00:00
parent 36e23bfd4a
commit 4bcbfd855a
3 changed files with 23 additions and 2 deletions

View file

@ -13,7 +13,9 @@ class EvenniaBasicPlayer(object):
"""
This is triggered after a new User and accompanying Object is created.
By the time this is triggered, the player is ready to go but not
logged in.
logged in. Note that this is different from at_object_creation(), which
is executed before at_player_creation(). This function is only
triggered when the User account _and_ the Object are ready.
"""
pass