mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 00:06:30 +01:00
Refactored amp.py to more cleanly splitting long AMP messages also during server sync (this could cause errors with a large number of connected players). Also fixed an issue with the lockstring get:all() being set by @create despite it not needing to (overloading changes in the typeclass).
This commit is contained in:
parent
1ae17bcbe4
commit
e9e2c78eef
9 changed files with 301 additions and 201 deletions
|
|
@ -651,6 +651,9 @@ def check_evennia_dependencies():
|
|||
sversion = south.__version__
|
||||
if sversion < south_min:
|
||||
errstring += "\n WARNING: South version %s found. Evennia recommends version %s or higher." % (sversion, south_min)
|
||||
if sversion == "0.8.3":
|
||||
errstring += "\n ERROR: South version %s found. This has a known bug and will not work. Please upgrade." % sversion
|
||||
no_error = False
|
||||
except ImportError:
|
||||
pass
|
||||
# IRC support
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue