Merge branch 'too-many-characters' into 'master'

Warn players when going over the skin limit

See merge request KartKrew/Kart-Public!214
This commit is contained in:
Sal 2020-08-26 09:58:22 -04:00
commit 7c69e49a05
1 changed files with 1 additions and 1 deletions

View File

@ -2746,7 +2746,7 @@ void R_AddSkins(UINT16 wadnum)
if (numskins >= MAXSKINS)
{
CONS_Debug(DBG_RENDER, "ignored skin (%d skins maximum)\n", MAXSKINS);
CONS_Alert(CONS_WARNING, M_GetText("Unable to add skin, too many characters are loaded (%d maximum)\n"), MAXSKINS);
continue; // so we know how many skins couldn't be added
}
buf = W_CacheLumpNumPwad(wadnum, lump, PU_CACHE);