mirror of
https://github.com/evennia/evennia.git
synced 2026-04-04 15:07:16 +02:00
Added missing object.db_sessid migration.
This commit is contained in:
parent
8e1bcdde02
commit
a22ce6d563
2 changed files with 113 additions and 2 deletions
|
|
@ -895,8 +895,8 @@ class CmdCharCreate(MuxCommandOOC):
|
|||
return
|
||||
key = self.lhs
|
||||
desc = self.rhs
|
||||
if player.db._playable_characters and len(player.db._playable_characters) >= self.MAX_NR_CHARACTERS:
|
||||
self.msg("You may only create a maximum of %i characters." % self.MAX_NR_CHARACTERS)
|
||||
if player.db._playable_characters and len(player.db._playable_characters) >= MAX_NR_CHARACTERS:
|
||||
self.msg("You may only create a maximum of %i characters." % MAX_NR_CHARACTERS)
|
||||
return
|
||||
# create the character
|
||||
from src.objects.models import ObjectDB
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue