Update vehicles-lua.bat

This update fixed a scripting error changed ` to '
This commit is contained in:
Court-Room-Gaming
2023-06-13 21:21:16 -06:00
committed by GitHub
parent 6f2b90b71b
commit 62a2d2fa8d

View File

@@ -14,7 +14,7 @@ for %%f in (*.ytd) do (
echo " ['price'] = 20000, " >> %LUA_FILE%
echo " ['category'] = 'compacts', " >> %LUA_FILE%
echo " ['categoryLabel'] = 'Compacts', " >> %LUA_FILE%
echo " ['hash'] = `!name!`, " >> %LUA_FILE%
echo " ['hash'] = '!name!', " >> %LUA_FILE%
echo " ['shop'] = 'pdm', " >> %LUA_FILE%
echo "}, " >> %LUA_FILE%
)