diff --git a/hyperstation/code/obj/economy.dm b/hyperstation/code/obj/economy.dm index 6ee1ece2e..04c1386a5 100644 --- a/hyperstation/code/obj/economy.dm +++ b/hyperstation/code/obj/economy.dm @@ -103,29 +103,29 @@ var/pininput = input(user, "Input pin", "Pin Number") as num|null if(pininput) if(pininput > 9999 || pininput < 1000) - to_chat(usr, "[name] buzzes, you must input a 4 digit number between 1000 and 9999.") + to_chat(usr, "[src] buzzes, you must input a 4 digit number between 1000 and 9999.") return pin = max(min( round(text2num(pininput)), 9999),1000) //4 numbers or less. var/obj/item/card/id/idcard = held_card if(pin == idcard.registered_account.account_pin) - to_chat(usr, "[name] beeps, accepting the pin.") + to_chat(usr, "[src] beeps, accepting the pin.") else - to_chat(usr, "[name] buzzes, denying the pin.") + to_chat(usr, "[src] buzzes, denying the pin.") if(href_list["changepin"]) playsound(src, get_sfx("terminal_type"), 25, 1) var/pinchange = input(user, "Input pin", "Pin Number") as num|null if(pinchange > 9999 || pinchange < 1000) - to_chat(usr, "[name], you must have a 4 digit number for a pin and be between 1000 and 9999.") + to_chat(usr, "[src], you must have a 4 digit number for a pin and be between 1000 and 9999.") return if(pinchange) var/pinchange2 = input(user, "Confirm pin", "Confirm pin") as num|null //time to confirm! if(pinchange == pinchange2) var/obj/item/card/id/idcard = held_card idcard.registered_account.account_pin = pinchange - to_chat(usr, "[name] beeps, your pin has been changed to [pinchange]!.") + to_chat(usr, "[src] beeps, your pin has been changed to [pinchange]!.") else - to_chat(usr, "[name] buzzes, your pins did not match!") + to_chat(usr, "[src] buzzes, your pins did not match!") pin = "" if(href_list["withdraw"])