mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 05:27:01 +01:00
Nukeops now spawn with backpack preference (#22401)
* Nukeops now spawn with backpack preference * Update code/game/gamemodes/nuclear/nuclear.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --------- Co-authored-by: Adrer <adrermail@gmail.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
This commit is contained in:
@@ -266,11 +266,25 @@
|
||||
R.set_frequency(radio_freq)
|
||||
synd_mob.equip_to_slot_or_del(R, slot_l_ear)
|
||||
|
||||
var/back
|
||||
|
||||
switch(synd_mob.backbag)
|
||||
if(GBACKPACK, DBACKPACK)
|
||||
back = /obj/item/storage/backpack
|
||||
if(GSATCHEL, DSATCHEL)
|
||||
back = /obj/item/storage/backpack/satchel_norm
|
||||
if(GDUFFLEBAG, DDUFFLEBAG)
|
||||
back = /obj/item/storage/backpack/duffel
|
||||
if(LSATCHEL)
|
||||
back = /obj/item/storage/backpack/satchel
|
||||
else
|
||||
back = /obj/item/storage/backpack
|
||||
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/clothing/under/syndicate(synd_mob), slot_w_uniform)
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(synd_mob), slot_shoes)
|
||||
synd_mob.equip_or_collect(new /obj/item/clothing/gloves/combat(synd_mob), slot_gloves)
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/card/id/syndicate(synd_mob), slot_wear_id)
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/storage/backpack(synd_mob), slot_back)
|
||||
synd_mob.equip_to_slot_or_del(new back(synd_mob), slot_back)
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/gun/projectile/automatic/pistol(synd_mob), slot_belt)
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/storage/box/survival_syndi(synd_mob.back), slot_in_backpack)
|
||||
synd_mob.equip_to_slot_or_del(new /obj/item/pinpointer/nukeop(synd_mob), slot_wear_pda)
|
||||
|
||||
Reference in New Issue
Block a user