From 3d6132e6308088c268b6531611521eadd91f7f92 Mon Sep 17 00:00:00 2001 From: Burns-The-Potatos <47405169+Burns-The-Potatos@users.noreply.github.com> Date: Wed, 15 Jan 2020 15:14:11 -0700 Subject: [PATCH 1/2] Update citadel_defines.dm --- code/__DEFINES/citadel_defines.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/__DEFINES/citadel_defines.dm b/code/__DEFINES/citadel_defines.dm index da5981ff..e4d902f1 100644 --- a/code/__DEFINES/citadel_defines.dm +++ b/code/__DEFINES/citadel_defines.dm @@ -21,9 +21,9 @@ #define COCK_SIZE_MIN 1 #define COCK_SIZE_MAX 20 -#define COCK_GIRTH_RATIO_MAX 1.25 -#define COCK_GIRTH_RATIO_DEF 0.75 -#define COCK_GIRTH_RATIO_MIN 0.5 +#define COCK_GIRTH_RATIO_MAX 0.6 +#define COCK_GIRTH_RATIO_DEF 0.25 +#define COCK_GIRTH_RATIO_MIN 0.2 #define KNOT_GIRTH_RATIO_MAX 3 #define KNOT_GIRTH_RATIO_DEF 2.1 From 5b566088362496d46681704f5eac221f3058ffbe Mon Sep 17 00:00:00 2001 From: Burns-The-Potatos <47405169+Burns-The-Potatos@users.noreply.github.com> Date: Wed, 15 Jan 2020 15:14:15 -0700 Subject: [PATCH 2/2] Update penis.dm --- modular_citadel/code/modules/arousal/organs/penis.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_citadel/code/modules/arousal/organs/penis.dm b/modular_citadel/code/modules/arousal/organs/penis.dm index 43a512ac..8d7a9e24 100644 --- a/modular_citadel/code/modules/arousal/organs/penis.dm +++ b/modular_citadel/code/modules/arousal/organs/penis.dm @@ -12,8 +12,8 @@ size = 2 //arbitrary value derived from length and girth for sprites. var/length = 6 //inches var/cached_length //used to detect a change in length - var/girth = 4.38 - var/girth_ratio = COCK_GIRTH_RATIO_DEF //0.73; check citadel_defines.dm + var/girth = 1.5 + var/girth_ratio = COCK_GIRTH_RATIO_DEF //0.25; check citadel_defines.dm; why was it .73? var/knot_girth_ratio = KNOT_GIRTH_RATIO_DEF var/list/dickflags = list() var/list/knotted_types = list("knotted", "barbed, knotted")