From f47d75c579a72d3b7df2c54bb617b3706be67d04 Mon Sep 17 00:00:00 2001
From: Sharkmare <34294231+Sharkmare@users.noreply.github.com>
Date: Fri, 9 Aug 2019 09:21:43 +0200
Subject: [PATCH] Fixing indents
---
code/game/machinery/casino.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/game/machinery/casino.dm b/code/game/machinery/casino.dm
index d2e837b094..263ec37595 100644
--- a/code/game/machinery/casino.dm
+++ b/code/game/machinery/casino.dm
@@ -31,7 +31,7 @@
visible_message("\ [user] spins the roulette and throws inside little ball.")
playsound(src.loc, 'sound/machines/roulette.ogg', 40, 1)
busy = 1
- icon_state = "roulette_wheel_spinning"
+ icon_state = "roulette_wheel_spinning"
var/result = rand(0,36)
var/color = "green"
add_fingerprint(user)
@@ -250,7 +250,7 @@
return
visible_message("\ [user] spins the wheel of fortune!")
busy = 1
- icon_state = "wheel_of_fortune_spinning"
+ icon_state = "wheel_of_fortune_spinning"
var/result = rand(1,interval)
add_fingerprint(user)
spawn(5 SECONDS)
@@ -838,4 +838,4 @@