You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code/game/machinery/slotmachine.dm
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -107,14 +107,14 @@
107
107
var/obj/item/holochip/H= I
108
108
if(!user.temporarilyRemoveItemFromInventory(H))
109
109
return
110
-
to_chat(user, "<span class='notice'>You insert [H.credits] holocredits into [src]'s!</span>")
110
+
to_chat(user, "<span class='notice'>You insert [H.credits] holocredits into [src]'s holoreader!</span>")
111
111
balance += H.credits
112
112
qdel(H)
113
113
else
114
114
to_chat(user, "<span class='warning'>This machine is only accepting coins!</span>")
115
115
elseif(I.tool_behaviour ==TOOL_MULTITOOL)
116
116
if(balance >0)
117
-
visible_message("<b>[src]</b> says, 'ERROR! Please empty the machine balance before altering paymode'") //Prevents converting coins into holocredits and vice versa
117
+
visible_message("<b>[src]</b> says, 'ERROR! Please empty the machine balance before altering paymode.'") //Prevents converting coins into holocredits and vice versa
0 commit comments