mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 05:57:16 +02:00
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:
parent
f1d743f14c
commit
1995f61d46
5 changed files with 18 additions and 23 deletions
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue