Skip to content

Commit

Permalink
Merge pull request #5262 from Superlagg/my-card-is-not-worthless-you-…
Browse files Browse the repository at this point in the history
…fuck

Fix condition for checking QR type in economy subsystem
  • Loading branch information
Kilmented authored Jun 15, 2024
2 parents 1d7fcae + a2a082b commit f6661bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/economy.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@ SUBSYSTEM_DEF(economy)
playsound(user, 'sound/machines/dash.ogg', 75, TRUE)
to_chat(user, span_alert("That's not a ticket!"))
return FALSE
if(!istype(QR, /obj/item/card/id))
if(istype(QR, /obj/item/card/id))
playsound(user, 'sound/machines/dash.ogg', 75, TRUE)
to_chat(user, span_alert("Nobody wants your worthless ID!"))
return FALSE
Expand Down

0 comments on commit f6661bb

Please sign in to comment.