We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d37c73 commit d618755Copy full SHA for d618755
Client/mods/deathmatch/logic/luadefs/CLuaVehicleDefs.cpp
@@ -138,6 +138,11 @@ void CLuaVehicleDefs::AddClass(lua_State* luaVM)
138
{
139
lua_newclass(luaVM);
140
141
+ lua_classfunction(luaVM, "getModelFromName", "getVehicleModelFromName");
142
+ lua_classfunction(luaVM, "getNameFromModel", "getVehicleNameFromModel");
143
+ lua_classfunction(luaVM, "getOriginalHandling", "getOriginalHandling");
144
+ lua_classfunction(luaVM, "getUpgradeSlotName", "getVehicleUpgradeSlotName");
145
+
146
lua_classfunction(luaVM, "create", "createVehicle");
147
lua_classfunction(luaVM, "blow", "blowVehicle");
148
lua_classfunction(luaVM, "fix", "fixVehicle");
0 commit comments