Skip to content

Commit

Permalink
roles now work
Browse files Browse the repository at this point in the history
  • Loading branch information
InsaneRed committed May 27, 2024
1 parent 2118d38 commit 0d54301
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 2 additions & 0 deletions code/datums/factions/uscm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@
border_rk = "command"
if(JOB_POLICE)
marine_rk = "mp"
if(JOB_TANK_CREW)
marine_rk = "tc"
if(JOB_WARDEN)
marine_rk = "warden"
border_rk = "command"
Expand Down
1 change: 0 additions & 1 deletion code/game/jobs/role_authority.dm
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ GLOBAL_VAR_INIT(players_preassigned, 0)
/datum/job/special/uaac,
/datum/job/special/uaac/tis,
/datum/job/special/uscm,
/datum/job/command/tank_crew //Rip VC
)
var/squads_all[] = typesof(/datum/squad) - /datum/squad
var/castes_all[] = subtypesof(/datum/caste_datum)
Expand Down
6 changes: 2 additions & 4 deletions code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_tank, list(
list("Snowplow", 0, /obj/item/hardpoint/armor/snowplow, VEHICLE_ARMOR_AVAILABLE, VENDOR_ITEM_REGULAR),

list("TREADS", 0, null, null, null),
list("Reinforced Treads", 0, /obj/item/hardpoint/locomotion/treads/robust, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_REGULAR),
list("Treads", 0, /obj/item/hardpoint/locomotion/treads, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_RECOMMENDED)))
list("Reinforced Treads", 0, /obj/item/hardpoint/locomotion/treads/robust, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_REGULAR)))

GLOBAL_LIST_INIT(cm_vending_vehicle_crew_tank_spare, list(

Expand Down Expand Up @@ -205,8 +204,7 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_tank_spare, list(
list("Snowplow", 0, /obj/item/hardpoint/armor/snowplow, null, VENDOR_ITEM_REGULAR),

list("TREADS", 0, null, null, null),
list("Reinforced Treads", 0, /obj/item/hardpoint/locomotion/treads/robust, null, VENDOR_ITEM_REGULAR),
list("Treads", 0, /obj/item/hardpoint/locomotion/treads, null, VENDOR_ITEM_REGULAR)))
list("Reinforced Treads", 0, /obj/item/hardpoint/locomotion/treads/robust, null, VENDOR_ITEM_REGULAR)))

GLOBAL_LIST_INIT(cm_vending_vehicle_crew_apc, list(
list("STARTING KIT SELECTION:", 0, null, null, null),
Expand Down

0 comments on commit 0d54301

Please sign in to comment.