diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm
index 046217960e8..7aa6bff7c4e 100644
--- a/code/game/machinery/slotmachine.dm
+++ b/code/game/machinery/slotmachine.dm
@@ -83,17 +83,14 @@
resultlvl = "good"
win_money(100, 'sound/goonstation/misc/bell.ogg')
else if (roll > 100 && roll <= 200)
- visible_message("[src] says, 'Winner! [usr.name] has won fifty credits!'")
result = "You win fifty credits!"
resultlvl = "good"
win_money(50)
else if (roll > 200 && roll <= 500)
- visible_message("[src] says, 'Winner! [usr.name] has won ten credits!'")
result = "You win ten credits!"
resultlvl = "good"
win_money(10)
else
- visible_message("[src] says, 'No Luck!'")
result = "No luck!"
resultlvl = "average"
working = 0