Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
remove one letter vars and fixes name
  • Loading branch information
Nanu308 committed Feb 27, 2024
1 parent 01039c0 commit 0e5bab6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/modules/gear_presets/clf.dm
Original file line number Diff line number Diff line change
Expand Up @@ -768,8 +768,8 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/jan, WEAR_HEAD)
//body
var/obj/item/clothing/under/colonist/clf/CLF = new()
var/obj/item/clothing/accessory/storage/webbing/W = new()
CLF.attach_accessory(new_human, W)
var/obj/item/clothing/accessory/storage/webbing/webbing = new()
CLF.attach_accessory(new_human, webbing)
new_human.equip_to_slot_or_del(CLF, WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia, WEAR_JACKET)
//waist
Expand Down
6 changes: 3 additions & 3 deletions code/modules/gear_presets/upp.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2590,7 +2590,7 @@

//*****************************************************************************************************/
/datum/equipment_preset/upp/synth
name = "UPP Combat Synthetic"
name = "UPP Synthetic"
flags = EQUIPMENT_PRESET_EXTRA

languages = ALL_SYNTH_LANGUAGES_UPP
Expand Down Expand Up @@ -2660,8 +2660,8 @@
new_human.equip_to_slot_or_del(new hat, WEAR_HEAD)
//body
var/obj/item/clothing/under/marine/veteran/UPP/medic/UPP = new()
var/obj/item/clothing/accessory/storage/tool_webbing/equipped/W = new()
UPP.attach_accessory(new_human, W)
var/obj/item/clothing/accessory/storage/tool_webbing/equipped/webbing = new()
UPP.attach_accessory(new_human, webbing)
new_human.equip_to_slot_or_del(UPP, WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/bottle/tricordrazine, WEAR_IN_JACKET)
Expand Down

0 comments on commit 0e5bab6

Please sign in to comment.