Relinked with correct relative links

This commit is contained in:
Griatch 2020-06-19 15:56:02 +02:00
parent 3e8017a874
commit 061dfbffaa
91 changed files with 633 additions and 631 deletions

View file

@ -82,7 +82,7 @@ and *templates* (how the web page should be structured).
Models are created in `mygame/web/chargen/models.py`.
A [Django database model](Concept/New-Models) is a Python class that describes the database storage of the
A [Django database model](../Concept/New-Models) is a Python class that describes the database storage of the
data you want to manage. Any data you choose to store is stored in the same database as the game and
you have access to all the game's objects here.
@ -262,9 +262,9 @@ create_object function to properly process the permissions.
Most importantly, the following attributes must be set on the created character object:
* Evennia [permissions](Component/Locks#permissions) (copied from the `AccountDB`).
* The right `puppet` [locks](Component/Locks) so the Account can actually play as this Character later.
* The relevant Character [typeclass](Component/Typeclasses)
* Evennia [permissions](../Component/Locks#permissions) (copied from the `AccountDB`).
* The right `puppet` [locks](../Component/Locks) so the Account can actually play as this Character later.
* The relevant Character [typeclass](../Component/Typeclasses)
* Character name (key)
* The Character's home room location (`#2` by default)