Put up a warning about not using BaseObject.at_init() at this time (it's not called, as per issue 188). Also removed the deprecated at_cache() hook (it doesn't work anymore now that the caching system is much more efficient and only caches once).

This commit is contained in:
Griatch 2011-09-15 10:46:41 +02:00
parent f1d743f14c
commit 1995f61d46
5 changed files with 18 additions and 23 deletions

View file

@ -90,12 +90,11 @@ class Object(BaseObject):
at_drop(dropper) - called when this object has been dropped.
at_say(speaker, message) - by default, called if an object inside this object speaks
at_cache() - called when this typeclass is instantiated and cached
at_server_reload() - called when server is reloading
at_server_shutdown() - called when server is resetting/shutting down
at_server_shutdown() - called when server is resetting/shutting down
"""
pass
class Character(BaseCharacter):
"""