mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
These are integers, whoops
This commit is contained in:
parent
7410ddad12
commit
95759f3fa8
1 changed files with 2 additions and 2 deletions
|
|
@ -9728,10 +9728,10 @@ static inline int lib_getenum(lua_State *L)
|
||||||
lua_pushboolean(L, comeback);
|
lua_pushboolean(L, comeback);
|
||||||
return 1;
|
return 1;
|
||||||
} else if (fastcmp(word,"wantedcalcdelay")) {
|
} else if (fastcmp(word,"wantedcalcdelay")) {
|
||||||
lua_pushboolean(L, wantedcalcdelay);
|
lua_pushinteger(L, wantedcalcdelay);
|
||||||
return 1;
|
return 1;
|
||||||
} else if (fastcmp(word,"indirectitemcooldown")) {
|
} else if (fastcmp(word,"indirectitemcooldown")) {
|
||||||
lua_pushboolean(L, indirectitemcooldown);
|
lua_pushinteger(L, indirectitemcooldown);
|
||||||
return 1;
|
return 1;
|
||||||
} else if (fastcmp(word,"thwompsactive")) {
|
} else if (fastcmp(word,"thwompsactive")) {
|
||||||
lua_pushboolean(L, thwompsactive);
|
lua_pushboolean(L, thwompsactive);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue