| 2736 | |
| 2737 | |
| 2738 | int LuaCallOuts::GetShotType(lua_State* L) { |
| 2739 | const ShotPath* shot = ParseShot(L, 1); |
| 2740 | if (shot == NULL) { |
| 2741 | return luaL_pushnil(L); |
| 2742 | } |
| 2743 | lua_pushinteger(L, shot->getShotType()); |
| 2744 | return 1; |
| 2745 | } |
| 2746 | |
| 2747 | |
| 2748 | int LuaCallOuts::GetShotFlagType(lua_State* L) { |
nothing calls this directly
no test coverage detected