Fixed inproper string

This commit is contained in:
ElPumpo
2018-07-14 23:11:12 +02:00
parent 8e0320be7a
commit 4a56fb7021
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
root = true
[*]
indent_size = 2
indent_style = space
indent_size = 4
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
+1 -1
View File
@@ -169,7 +169,7 @@ RegisterServerEvent('esx_mecanojob:startCraft2')
AddEventHandler('esx_mecanojob:startCraft2', function()
local _source = source
PlayersCrafting2[_source] = true
TriggerClientEvent('esx:showNotification', _source, _U('assembling_blowtorch'))
TriggerClientEvent('esx:showNotification', _source, _U('assembling_repair_kit'))
Craft2(_source)
end)