mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26:30 +01:00
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:
parent
36e23bfd4a
commit
4bcbfd855a
3 changed files with 23 additions and 2 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue