|
60 | 60 | uniform = /obj/item/clothing/under/gearharness
|
61 | 61 |
|
62 | 62 | glasses = null
|
| 63 | + accessory = null |
| 64 | + suit_accessory = null |
63 | 65 | head = /obj/item/clothing/head/vaurca_breeder
|
64 | 66 | shoes = /obj/item/clothing/shoes/vaurca/breeder
|
65 | 67 | mask = /obj/item/clothing/mask/gas/vaurca/filter
|
66 | 68 | suit = /obj/item/clothing/suit/vaurca/breeder
|
67 | 69 |
|
| 70 | + backpack_contents = list(/obj/item/device/camera = 1) // Redefined so they do not inherit the extra energy pistol from the parent representative outfit. |
| 71 | + |
68 | 72 | /obj/outfit/job/representative/consular/zora/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
69 | 73 | if(H)
|
70 | 74 | if(isvaurca(H))
|
71 | 75 | H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec(H), slot_back)
|
72 | 76 | H.equip_to_slot_or_del(new /obj/item/storage/box/tcaf_pamphlet(H), slot_in_backpack)
|
73 |
| - H.equip_to_slot_or_del(new /obj/item/gun/energy/vaurca/blaster(H), slot_in_backpack) |
| 77 | + H.equip_to_slot_or_del(new /obj/item/gun/energy/vaurca/blaster(H), slot_belt) |
74 | 78 | if(!visualsOnly)
|
75 | 79 | addtimer(CALLBACK(src, PROC_REF(send_representative_mission), H), 5 MINUTES)
|
76 | 80 | return TRUE
|
|
134 | 138 | uniform = /obj/item/clothing/under/gearharness
|
135 | 139 |
|
136 | 140 | glasses = null
|
| 141 | + accessory = null |
| 142 | + suit_accessory = null |
137 | 143 | head = /obj/item/clothing/head/vaurca_breeder/klax
|
138 | 144 | shoes = /obj/item/clothing/shoes/vaurca/breeder/klax
|
139 | 145 | mask = /obj/item/clothing/mask/gas/vaurca/filter
|
140 | 146 | suit = /obj/item/clothing/suit/vaurca/breeder/klax
|
141 | 147 |
|
| 148 | + backpack_contents = list(/obj/item/device/camera = 1) // Redefined so they do not inherit the extra energy pistol from the parent representative outfit. |
| 149 | + |
142 | 150 | /obj/outfit/job/representative/consular/klax/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
143 | 151 | if(H)
|
144 | 152 | if(isvaurca(H))
|
145 | 153 | H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/klax(H), slot_back)
|
146 |
| - H.equip_to_slot_or_del(new /obj/item/gun/energy/vaurca/blaster(H), slot_in_backpack) |
| 154 | + H.equip_to_slot_or_del(new /obj/item/gun/energy/vaurca/blaster(H), slot_belt) |
147 | 155 | if(!visualsOnly)
|
148 | 156 | addtimer(CALLBACK(src, PROC_REF(send_representative_mission), H), 5 MINUTES)
|
149 | 157 | return TRUE
|
|
208 | 216 | uniform = /obj/item/clothing/under/gearharness
|
209 | 217 |
|
210 | 218 | glasses = null
|
| 219 | + accessory = null |
| 220 | + suit_accessory = null |
211 | 221 | head = /obj/item/clothing/head/vaurca_breeder/cthur
|
212 | 222 | shoes = /obj/item/clothing/shoes/vaurca/breeder/cthur
|
213 | 223 | mask = /obj/item/clothing/mask/gas/vaurca/filter
|
214 | 224 | suit = /obj/item/clothing/suit/vaurca/breeder/cthur
|
215 | 225 |
|
| 226 | + backpack_contents = list(/obj/item/device/camera = 1) // Redefined so they do not inherit the extra energy pistol from the parent representative outfit. |
| 227 | + |
216 | 228 | /obj/outfit/job/representative/consular/cthur/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
217 | 229 | if(H)
|
218 | 230 | if(isvaurca(H))
|
219 | 231 | H.equip_to_slot_or_del(new /obj/item/storage/backpack/typec/cthur(H), slot_back)
|
220 |
| - H.equip_to_slot_or_del(new /obj/item/gun/energy/vaurca/blaster(H), slot_in_backpack) |
| 232 | + H.equip_to_slot_or_del(new /obj/item/gun/energy/vaurca/blaster(H), slot_belt) |
221 | 233 | if(!visualsOnly)
|
222 | 234 | addtimer(CALLBACK(src, PROC_REF(send_representative_mission), H), 5 MINUTES)
|
223 | 235 | return TRUE
|
|
0 commit comments