diff --git a/pinaxcon/registrasion/management/commands/populate_inventory.py b/pinaxcon/registrasion/management/commands/populate_inventory.py index 0607cc04..a1a36a32 100644 --- a/pinaxcon/registrasion/management/commands/populate_inventory.py +++ b/pinaxcon/registrasion/management/commands/populate_inventory.py @@ -646,7 +646,6 @@ class Command(BaseCommand): ) pdns_by_staff.group.set([ self.group_team, - self.group_volunteers, ]) pdns_by_staff.categories.set([self.pdns_category, ]) @@ -655,7 +654,7 @@ class Command(BaseCommand): cond.CategoryFlag, ("description", ), description="GottaGettaTicketFirst", - condition=cond.FlagBase.ENABLE_IF_TRUE, + condition=cond.FlagBase.DISABLE_IF_FALSE, enabling_category = self.ticket ) needs_a_ticket.categories.set([ @@ -798,15 +797,14 @@ class Command(BaseCommand): ]) free_category(ticket_student_inclusions, self.t_shirt) - # Team & volunteer ticket inclusions + # Team ticket inclusions ticket_staff_inclusions = self.find_or_make( cond.IncludedProductDiscount, ("description", ), - description="Complimentary for ticket holder (staff/volunteer)", + description="Complimentary for ticket holder staff)", ) ticket_staff_inclusions.enabling_products.set([ self.ticket_team, - self.ticket_volunteer, ]) free_category(ticket_staff_inclusions, self.penguin_dinner)