evennia / evennia

Python MUD/MUX/MUSH/MU* development system

Home Page:http://www.evennia.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Documentation] (Enter a brief description here)

lowandslowbbq8188 opened this issue · comments

Existing page

Topic: 7.3.3. Setting things on new Characters
Section:
Hm, this is the same values we set before. They are not random. The reason for this is of course that, as said, at_object_creation only runs once, the very first time a character is created. Our character object was already created long before, so it will not be called again.

It’s simple enough to run it manually though:

self.at_object_creation()
py self.get_stats()
(5, 4, 8)

Suggested change

Need to change it to:

py self.at_object_creation()
py self.get_stats()
(5, 4, 8)