mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 04:41:23 +00:00
Fix SKINCOLOR_ prefix not registering in Lua
This commit is contained in:
parent
39e644a7f5
commit
4590d5c5cf
1 changed files with 2 additions and 2 deletions
|
@ -9163,7 +9163,7 @@ static fixed_t find_const(const char **rword)
|
||||||
free(word);
|
free(word);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
else if (fastncmp("SKINCOLOR_",word,20)) {
|
else if (fastncmp("SKINCOLOR_",word,10)) {
|
||||||
char *p = word+10;
|
char *p = word+10;
|
||||||
for (i = 0; i < MAXTRANSLATIONS; i++)
|
for (i = 0; i < MAXTRANSLATIONS; i++)
|
||||||
if (fastcmp(p, COLOR_ENUMS[i])) {
|
if (fastcmp(p, COLOR_ENUMS[i])) {
|
||||||
|
@ -9595,7 +9595,7 @@ static inline int lib_getenum(lua_State *L)
|
||||||
if (mathlib) return luaL_error(L, "huditem '%s' could not be found.\n", word);
|
if (mathlib) return luaL_error(L, "huditem '%s' could not be found.\n", word);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
else if (fastncmp("SKINCOLOR_",word,20)) {
|
else if (fastncmp("SKINCOLOR_",word,10)) {
|
||||||
p = word+10;
|
p = word+10;
|
||||||
for (i = 0; i < MAXTRANSLATIONS; i++)
|
for (i = 0; i < MAXTRANSLATIONS; i++)
|
||||||
if (fastcmp(p, COLOR_ENUMS[i])) {
|
if (fastcmp(p, COLOR_ENUMS[i])) {
|
||||||
|
|
Loading…
Reference in a new issue