Skip to content

Commit

Permalink
Changes reset code to 1000 instead of 0 (ParadiseSS13#28231)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spaghetti-bit authored Feb 3, 2025
1 parent a9b181e commit 39d58e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/economy/economy_machinery/eftpos.dm
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@
if(istype(I, /obj/item/card))
var/obj/item/card/id/C = I
if((ACCESS_CENT_COMMANDER in C.access) || (ACCESS_HOP in C.access) || (ACCESS_CAPTAIN in C.access))
access_code = 0
to_chat(user, "[bicon(src)]<span class='notice'>Access code reset to 0.</span>")
access_code = 1000
to_chat(user, "[bicon(src)]<span class='notice'>Access code reset to [access_code].</span>")
else if(istype(I, /obj/item/card/emag))
access_code = 0
to_chat(user, "[bicon(src)]<span class='notice'>Access code reset to 0.</span>")
access_code = 1000
to_chat(user, "[bicon(src)]<span class='notice'>Access code reset to [access_code].</span>")
if("offer")
if(can_offer)
offer(user)
Expand Down

0 comments on commit 39d58e2

Please sign in to comment.