Skip to content

Commit

Permalink
more punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoengi authored Dec 18, 2024
1 parent 285ded2 commit a2d1ed2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/game/machinery/slotmachine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
var/obj/item/spacecash/bundle/H = I
if(!user.temporarilyRemoveItemFromInventory(H))
return
to_chat(user, "<span class='notice'>You insert [H.value] credits into [src]'s! slot</span>")
to_chat(user, "<span class='notice'>You insert [H.value] credits into [src]'s slot!</span>")
balance += H.value
qdel(H)
else
Expand Down Expand Up @@ -110,7 +110,7 @@

else
dat = {"Five credits to play!<BR>
<B>Prize Money Available:</B> [money] (jackpot payout is ALWAYS 100%!)<BR>
<B>Prize Money Available:</B> [money] (Jackpot payout is ALWAYS 100%!)<BR>
<B>Credit Remaining:</B> [balance]<BR>
[plays] players have tried their luck today, and [jackpots] have won a jackpot!<BR>
<HR><BR>
Expand All @@ -119,7 +119,7 @@
[reeltext]
<BR>"}
if(balance > 0)
dat+="<font size='1'><A href='?src=[REF(src)];refund=1'>Refund balance</A><BR>"
dat+="<font size='1'><A href='?src=[REF(src)];refund=1'>Refund Balance</A><BR>"

var/datum/browser/popup = new(user, "slotmachine", "Slot Machine")
popup.set_content(dat)
Expand Down

0 comments on commit a2d1ed2

Please sign in to comment.