diff --git a/hyperstation/icons/obj/genitals/belly.dmi b/hyperstation/icons/obj/genitals/belly.dmi index 2b4409d0..cef65c99 100644 Binary files a/hyperstation/icons/obj/genitals/belly.dmi and b/hyperstation/icons/obj/genitals/belly.dmi differ diff --git a/modular_citadel/code/modules/arousal/organs/belly.dm b/modular_citadel/code/modules/arousal/organs/belly.dm index 93e05e0c..c2afa6ad 100644 --- a/modular_citadel/code/modules/arousal/organs/belly.dm +++ b/modular_citadel/code/modules/arousal/organs/belly.dm @@ -1,6 +1,6 @@ /obj/item/organ/genital/belly //I know, I know a belly aint a genital. but it is in the sake of code. name = "belly" - desc = "a belly." + desc = "You see a belly on their midsection." icon_state = "belly" icon = 'modular_citadel/icons/obj/genitals/breasts.dmi' zone = "chest" @@ -11,7 +11,6 @@ shape = "Pair" masturbation_verb = "massage" can_climax = FALSE - fluid_transfer_factor = 0.5 var/sent_full_message = TRUE //defaults to 1 since they're full to start diff --git a/modular_citadel/code/modules/arousal/organs/genitals.dm b/modular_citadel/code/modules/arousal/organs/genitals.dm index 6633f156..50ac9f44 100644 --- a/modular_citadel/code/modules/arousal/organs/genitals.dm +++ b/modular_citadel/code/modules/arousal/organs/genitals.dm @@ -429,9 +429,9 @@ genital_overlay.icon_state = "[G.slot]_[S.icon_state]_[size]_[aroused_state]_[layertext]" colourcode = S.color_src - if(G.slot == "belly") + if(G.slot == "belly") //we have a different size system to the rest of the genitals genital_overlay.icon = 'hyperstation/icons/obj/genitals/belly.dmi' - genital_overlay.icon_state = "belly" + genital_overlay.icon_state = "belly_[size]" colourcode = "belly_color" diff --git a/tgstation.dme b/tgstation.dme index ead7fbf6..8d4bd1f0 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -15,6 +15,7 @@ // BEGIN_INCLUDE #include "_maps\_basemap.dm" +#include "_maps\boxstation.dm" #include "code\_compile_options.dm" #include "code\world.dm" #include "code\__DEFINES\_globals.dm"