From 1e7603024ef1ed816fe7fc525591b2cde2b11d9c Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 1 May 2019 15:19:53 +0200 Subject: [PATCH] Fixes to inline_python --- evennia/contrib/ingame_python/typeclasses.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/evennia/contrib/ingame_python/typeclasses.py b/evennia/contrib/ingame_python/typeclasses.py index 92809b5629..af7230ab97 100644 --- a/evennia/contrib/ingame_python/typeclasses.py +++ b/evennia/contrib/ingame_python/typeclasses.py @@ -1,8 +1,9 @@ """ Typeclasses for the in-game Python system. -To use them, one should inherit from these classes (EventObject, -EventRoom, EventCharacter and EventExit). +To use them, change your base typeclasses to inherit from the classes in this +module (EventObject, EventRoom, EventCharacter and EventExit) instead of the +default ones in evennia core. """