From 4a56fb7021bc445e32acaf0bf5d8c7a03992e8e6 Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Sat, 14 Jul 2018 23:11:12 +0200 Subject: [PATCH] Fixed inproper string --- .editorconfig | 4 ++-- server/main.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 41c2aaf2..6866fb40 100644 --- a/.editorconfig +++ b/.editorconfig @@ -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 diff --git a/server/main.lua b/server/main.lua index 7c90d40c..890bdd75 100644 --- a/server/main.lua +++ b/server/main.lua @@ -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)