diff --git a/code/modules/casino/casino_prize_vendor.dm b/code/modules/casino/casino_prize_vendor.dm index 3c14fd512ba..c785cc9f935 100644 --- a/code/modules/casino/casino_prize_vendor.dm +++ b/code/modules/casino/casino_prize_vendor.dm @@ -55,6 +55,7 @@ var/category_drinks = 2 var/category_implants = 1 var/category_event = 1 //For special events, holidays, etc + var/category_pets = 2 /obj/machinery/casino_prize_dispenser/Initialize(mapload) . = ..() @@ -282,6 +283,8 @@ restriction_check = category_implants if("event") restriction_check = category_event + if("pets") + restriction_check = category_pets else to_chat(ui.user, span_warning("Prize checkout error has occurred, purchase cancelled.")) return FALSE