From 1a73b7e4055511f651e98b8f39ebe61834d690ab Mon Sep 17 00:00:00 2001 From: brightkitsune Date: Fri, 24 Jan 2025 17:53:28 +0000 Subject: [PATCH 1/4] Porting over minor changes in the turpo nutriment pump. --- GainStation13/code/modules/surgery/organs/augments.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GainStation13/code/modules/surgery/organs/augments.dm b/GainStation13/code/modules/surgery/organs/augments.dm index 88a6d84f67..32ac0541fd 100644 --- a/GainStation13/code/modules/surgery/organs/augments.dm +++ b/GainStation13/code/modules/surgery/organs/augments.dm @@ -5,8 +5,10 @@ desc = "This implant was meant to prevent people from going hungry, but due to a flaw in its designs, it permanently produces a small amount of nutriment overtime." icon_state = "chest_implant" implant_color = "#006607" + nutrition_amount = 20 //Dunno if this is still needed. Will test. hunger_threshold = NUTRITION_LEVEL_FULL poison_amount = 10 + message = "" //Why wasn't this ported over? Spam is a pain in the butt. Just shaddup already! /obj/item/organ/cyberimp/chest/mobility name = "Mobility Nanite Core" From ea97d2a78963752bcf7010a45467fe11fd5d700c Mon Sep 17 00:00:00 2001 From: brightkitsune Date: Fri, 24 Jan 2025 18:05:36 +0000 Subject: [PATCH 2/4] So that's why it wasn't compiling. Missing Vars. --- code/modules/surgery/organs/augments_chest.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/surgery/organs/augments_chest.dm b/code/modules/surgery/organs/augments_chest.dm index c96f1d20d2..23b8cb3384 100644 --- a/code/modules/surgery/organs/augments_chest.dm +++ b/code/modules/surgery/organs/augments_chest.dm @@ -13,6 +13,8 @@ var/hunger_threshold = NUTRITION_LEVEL_STARVING var/synthesizing = 0 var/poison_amount = 5 + var/nutrition_amount = 50 // GS13 + var/message = "You feel less hungry..." // GS13 slot = ORGAN_SLOT_STOMACH_AID /obj/item/organ/cyberimp/chest/nutriment/on_life() @@ -26,9 +28,9 @@ if(owner.nutrition <= hunger_threshold) synthesizing = TRUE - to_chat(owner, "You feel less hungry...") - owner.adjust_nutrition(50) - addtimer(CALLBACK(src, PROC_REF(synth_cool)), 50) + to_chat(owner, message) + owner.nutrition += nutrition_amount + addtimer(CALLBACK(src,PROC_REF(synth_cool)), 50) /obj/item/organ/cyberimp/chest/nutriment/proc/synth_cool() synthesizing = FALSE From 988e9d6417b021f7ddf40bd797eef8c334a475c9 Mon Sep 17 00:00:00 2001 From: brightkitsune Date: Wed, 29 Jan 2025 01:04:05 +0000 Subject: [PATCH 3/4] Adding the latex clothes back in. --- code/modules/vending/kinkmate.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/vending/kinkmate.dm b/code/modules/vending/kinkmate.dm index 5939b48af0..000c521a57 100644 --- a/code/modules/vending/kinkmate.dm +++ b/code/modules/vending/kinkmate.dm @@ -28,6 +28,9 @@ /obj/item/clothing/under/misc/poly_bottomless = 3, /obj/item/clothing/under/misc/poly_tanktop = 3, /obj/item/clothing/under/misc/poly_tanktop/female = 3, + /obj/item/clothing/under/latexfull = 10, + /obj/item/clothing/under/latexhalf = 10, + /obj/item/clothing/gloves/latexsleeves = 10, /obj/item/autosurgeon/penis = 3, /obj/item/autosurgeon/testicles = 3, /obj/item/storage/pill_bottle/penis_enlargement = 10, From 46cfaff34993a113d4ebdbfee17155a7de23d069 Mon Sep 17 00:00:00 2001 From: brightkitsune Date: Thu, 30 Jan 2025 19:41:02 +0000 Subject: [PATCH 4/4] Adding tag as requested --- code/modules/vending/kinkmate.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/vending/kinkmate.dm b/code/modules/vending/kinkmate.dm index 000c521a57..8fd5299794 100644 --- a/code/modules/vending/kinkmate.dm +++ b/code/modules/vending/kinkmate.dm @@ -28,9 +28,9 @@ /obj/item/clothing/under/misc/poly_bottomless = 3, /obj/item/clothing/under/misc/poly_tanktop = 3, /obj/item/clothing/under/misc/poly_tanktop/female = 3, - /obj/item/clothing/under/latexfull = 10, - /obj/item/clothing/under/latexhalf = 10, - /obj/item/clothing/gloves/latexsleeves = 10, + /obj/item/clothing/under/latexfull = 10, //GS13 - ported over latex clothing options + /obj/item/clothing/under/latexhalf = 10, //GS13 - ported over latex clothing options + /obj/item/clothing/gloves/latexsleeves = 10, //GS13 - ported over latex clothing options /obj/item/autosurgeon/penis = 3, /obj/item/autosurgeon/testicles = 3, /obj/item/storage/pill_bottle/penis_enlargement = 10,