From b94767b85a1001d3ea1750e8842601a1ab8b39be Mon Sep 17 00:00:00 2001 From: trhr Date: Mon, 6 Apr 2020 01:00:06 -0500 Subject: [PATCH 1/2] Typo --- evennia/typeclasses/attributes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/typeclasses/attributes.py b/evennia/typeclasses/attributes.py index 2cb7ac8843..6fb4870dae 100644 --- a/evennia/typeclasses/attributes.py +++ b/evennia/typeclasses/attributes.py @@ -59,7 +59,7 @@ class Attribute(SharedMemoryModel): # Attribute Database Model setup # # These database fields are all set using their corresponding properties, - # named same as the field, but withtout the db_* prefix. + # named same as the field, but without the db_* prefix. db_key = models.CharField("key", max_length=255, db_index=True) db_value = PickledObjectField( "value", From fefe56741e1f8bbd629c283b0921e3ba6e5c1fef Mon Sep 17 00:00:00 2001 From: trhr Date: Mon, 6 Apr 2020 01:18:38 -0500 Subject: [PATCH 2/2] Typo --- evennia/accounts/accounts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/accounts/accounts.py b/evennia/accounts/accounts.py index f3217e88ea..11a0aa41d6 100644 --- a/evennia/accounts/accounts.py +++ b/evennia/accounts/accounts.py @@ -4,7 +4,7 @@ Typeclass for Account objects Note that this object is primarily intended to store OOC information, not game info! This object represents the actual user (not their -character) and has NO actual precence in the +character) and has NO actual presence in the game world (this is handled by the associated character object, so you should customize that instead for most things).