From 0d224d9d00879dc691b80ab3c587b6ddd3b92e05 Mon Sep 17 00:00:00 2001 From: David Winters Date: Thu, 29 Apr 2021 19:58:41 -0400 Subject: [PATCH] Update loadout_general_vr.dm --- .../loadout/loadout_general_vr.dm | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_general_vr.dm b/code/modules/client/preference_setup/loadout/loadout_general_vr.dm index f8f52d2f5e6..8f11a56b372 100644 --- a/code/modules/client/preference_setup/loadout/loadout_general_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_general_vr.dm @@ -66,28 +66,26 @@ gear_tweaks += new/datum/gear_tweak/path(toytype) /datum/gear/chewtoy - display_name = "chew toy selection" + display_name = "animal toy selection" path = /obj/item/toy/chewtoy /datum/gear/chewtoy/New() ..() var/toytype = list() toytype["Bone"] = /obj/item/toy/chewtoy - toytype["Tall"] = /obj/item/toy/chewtoy/tall + toytype["Classic"] = /obj/item/toy/chewtoy/tall + toytype["Mouse"] = /obj/item/toy/cat_toy + toytype["Feather rod"] = /obj/item/toy/cat_toy/rod gear_tweaks += new/datum/gear_tweak/path(toytype) /datum/gear/chewtoy_poly - display_name = "chew toy, bone, colorable" + display_name = "animal toy selection, colorable" path = /obj/item/toy/chewtoy/poly -/datum/gear/chewtoy_tall_poly - display_name = "chew toy, tall, colorable" - path = /obj/item/toy/chewtoy/tall/poly - /datum/gear/chewtoy_poly/New() ..() + var/toytype = list() + toytype["Bone"] = /obj/item/toy/chewtoy/poly + toytype["Classic"] = /obj/item/toy/chewtoy/tall/poly + gear_tweaks += new/datum/gear_tweak/path(toytype) gear_tweaks += gear_tweak_free_color_choice - -/datum/gear/chewtoy_tall_poly/New() - ..() - gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file