Skip to content

Commit

Permalink
Update robot.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 committed Nov 23, 2024
1 parent ddefeaa commit 788cab6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/datums/quick_load/beginner/robot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
wear_suit = /obj/item/clothing/suit/modular/robot/svalinn

/datum/outfit/quick/beginner/robot/laser_rifle/post_equip(mob/living/carbon/human/robot, visualsOnly)
. = ..()
for(var/i in 1 to 3)
robot.equip_to_slot_or_del(new /obj/item/cell/lasgun/lasrifle, SLOT_IN_BELT)
for(var/i in 1 to 3)
robot.equip_to_slot_or_del(new /obj/item/cell/lasgun/lasrifle/recharger, SLOT_IN_BELT)

for(var/i in 1 to 6)
robot.equip_to_slot_or_del(new /obj/item/ammo_magazine/flamer_tank/mini, SLOT_IN_BACKPACK)
robot.equip_to_slot_or_del(new /obj/item/weapon/powerfist/full, SLOT_IN_BACKPACK)
Expand All @@ -53,6 +54,7 @@
wear_suit = /obj/item/clothing/suit/modular/robot/heavy/tyr_onegeneral

/datum/outfit/quick/beginner/robot/laser_machinegunner/post_equip(mob/living/carbon/human/robot, visualsOnly)
. = ..()
robot.equip_to_slot_or_del(new /obj/item/weapon/powerfist/full, SLOT_IN_SUIT)
robot.equip_to_slot_or_del(new /obj/item/cell/lasgun/lasrifle, SLOT_IN_SUIT)

Expand All @@ -68,5 +70,6 @@
wear_suit = /obj/item/clothing/suit/modular/robot/light/baldur_general

/datum/outfit/quick/beginner/robot/laser_sniper/post_equip(mob/living/carbon/human/robot, visualsOnly)
. = ..()
robot.equip_to_slot_or_del(new /obj/item/weapon/powerfist/full, SLOT_IN_SUIT)
robot.equip_to_slot_or_del(new /obj/item/cell/lasgun/lasrifle, SLOT_IN_SUIT)

0 comments on commit 788cab6

Please sign in to comment.