From ef6ea6734862c9cbd38718bc2d1997a879be5470 Mon Sep 17 00:00:00 2001 From: carlarctg <53100513+carlarctg@users.noreply.github.com> Date: Sun, 27 Oct 2024 11:07:08 -0300 Subject: [PATCH] [NO GBP] adds big pointer to chipped quirk (#87486) ## About The Pull Request adds the big pointer chip that lets you recolor your large pointer to the chipped quirk ## Why It's Good For The Game i forgot to add this, whoops if you are worried about spam. the 2 cost chip that literally makes every message you say be spoken like a musical has really shocked me in how little it has been used so far. so that is not a concern ## Changelog :cl: add: adds big pointer to chipped quirk /:cl: --- code/_globalvars/lists/quirks.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/_globalvars/lists/quirks.dm b/code/_globalvars/lists/quirks.dm index c052f761b03..296f1d79f8e 100644 --- a/code/_globalvars/lists/quirks.dm +++ b/code/_globalvars/lists/quirks.dm @@ -120,5 +120,6 @@ GLOBAL_LIST_INIT(quirk_chipped_choice, list( "Integrated Intuitive Thinking and Judging" = /obj/item/skillchip/intj, "F0RC3 4DD1CT10N" = /obj/item/skillchip/drunken_brawler, "\"Space Station 13: The Musical\"" = /obj/item/skillchip/musical, - "Mast-Angl-Er skillchip" = /obj/item/skillchip/master_angler, + "Mast-Angl-Er" = /obj/item/skillchip/master_angler, + "Kommand" = /obj/item/skillchip/big_pointer, ))