From 27e320ce55a22900a8da2b586ab67807f99f4b77 Mon Sep 17 00:00:00 2001
From: Jakestus <kupla95@gmail.com>
Date: Thu, 24 Oct 2019 23:56:49 +0300
Subject: [PATCH] Fix indents spaces->tabs

---
 car/carspawn.lua | 4 ++--
 die/die.lua      | 4 ++--
 gun/guns4all.lua | 4 ++--
 pos/pos.lua      | 6 +++---
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/car/carspawn.lua b/car/carspawn.lua
index 6e8d8ab..e5f6ebb 100644
--- a/car/carspawn.lua
+++ b/car/carspawn.lua
@@ -36,8 +36,8 @@ RegisterCommand('car', function(source, args)
 	-- Inform vehicle spawned
 	TriggerEvent('chat:addMessage', {
 		color = {0,255,0},
-        args = { 'Tässä pyytämäsi upouusi ' .. vehicle }
-    })
+		args = { 'Tässä pyytämäsi upouusi ' .. vehicle }
+	})
 	
 	-- Cleaning up. Let R* handle despawning
 	SetModelAsNoLongerNeeded(vehicle)
diff --git a/die/die.lua b/die/die.lua
index 43eab35..1493fc3 100644
--- a/die/die.lua
+++ b/die/die.lua
@@ -5,8 +5,8 @@ RegisterCommand('die', function(source, args)
 	-- Chat about heart failure
 	TriggerEvent('chat:addMessage', {
 		color = {255,0,0},
-        args = { 'Sydämesi petti' }
-    })
+		args = { 'Sydämesi petti' }
+	})
 	
 end, false)
 
diff --git a/gun/guns4all.lua b/gun/guns4all.lua
index 4fa2e18..a1d8d21 100644
--- a/gun/guns4all.lua
+++ b/gun/guns4all.lua
@@ -8,8 +8,8 @@ end, false)RegisterCommand('wpn', function(source, args)
 	giveGrantedWpn()
 	TriggerEvent('chat:addMessage', {
 		color = {255,255,0},
-        args = { 'Hernepyssynne, olkaa hyvä.' }
-    })
+		args = { 'Hernepyssynne, olkaa hyvä.' }
+	})
 end, false)
 AddEventHandler('playerSpawned', function()
 	giveGrantedWpn()
diff --git a/pos/pos.lua b/pos/pos.lua
index 625f1ef..6823ed5 100644
--- a/pos/pos.lua
+++ b/pos/pos.lua
@@ -5,8 +5,8 @@ RegisterCommand('pos', function(source, args)
 	local pos = GetEntityCoords(ped)
 	
 	-- tell coordinates
-    TriggerEvent('chat:addMessage', {
-        args = { pos.x .. "\n" .. pos.y.. "\n" .. pos.z }
-    })
+	TriggerEvent('chat:addMessage', {
+		args = { pos.x .. "\n" .. pos.y.. "\n" .. pos.z }
+	})
 	
 end, false)
\ No newline at end of file