mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +00:00
Add P_DoSpring to base library.
This commit is contained in:
parent
f509c56e3c
commit
9987d132fb
1 changed files with 13 additions and 0 deletions
|
@ -901,6 +901,18 @@ static int lib_pFloorzAtPos(lua_State *L)
|
|||
lua_pushinteger(L, P_FloorzAtPos(x, y, z, height));
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int lib_pDoSpring(lua_State *L)
|
||||
{
|
||||
mobj_t *spring = *((mobj_t **)luaL_checkudata(L, 1, META_MOBJ));
|
||||
mobj_t *object = *((mobj_t **)luaL_checkudata(L, 2, META_MOBJ));
|
||||
NOHUD
|
||||
if (!spring || !object)
|
||||
return LUA_ErrInvalid(L, "mobj_t");
|
||||
P_DoSpring(spring, object);
|
||||
return 0;
|
||||
}
|
||||
|
||||
// P_INTER
|
||||
////////////
|
||||
|
||||
|
@ -1680,6 +1692,7 @@ static luaL_Reg lib[] = {
|
|||
{"P_CheckHoopPosition",lib_pCheckHoopPosition},
|
||||
{"P_RadiusAttack",lib_pRadiusAttack},
|
||||
{"P_FloorzAtPos",lib_pFloorzAtPos},
|
||||
{"P_DoSpring",lib_pDoSpring},
|
||||
|
||||
// p_inter
|
||||
{"P_RemoveShield",lib_pRemoveShield},
|
||||
|
|
Loading…
Reference in a new issue