mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-27 20:48:48 +01:00
Bug: Supplied fix for dupe_check function
This commit is contained in:
parent
9f923bae24
commit
09b37d07f5
1 changed files with 3 additions and 0 deletions
|
|
@ -1184,6 +1184,9 @@ static bool perform_new_char_dupe_check(struct descriptor_data *d)
|
|||
if (k == d)
|
||||
continue;
|
||||
|
||||
if (k->character == NULL)
|
||||
continue;
|
||||
|
||||
/* Do the player names match? */
|
||||
if (!strcmp(GET_NAME(k->character), GET_NAME(d->character))) {
|
||||
/* Check the other character is still in creation? */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue