mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-22 20:57:23 +01:00
Merge pull request #1655 from VOREStation/aro-bsjs
Bluespace Jumpsuit and remove arbitrary size changing
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
/mob/living/carbon/human/proc/examine_weight()
|
||||
if(!show_pudge()) //Some clothing or equipment can hide this.
|
||||
return ""
|
||||
var/message = ""
|
||||
var/weight_examine = round(weight)
|
||||
var/t_He = "It" //capitalised for use at the start of each line.
|
||||
@@ -58,6 +60,8 @@
|
||||
return message //Credit to Aronai for helping me actually get this working!
|
||||
|
||||
/mob/living/carbon/human/proc/examine_nutrition()
|
||||
if(!show_pudge()) //Some clothing or equipment can hide this.
|
||||
return ""
|
||||
var/message = ""
|
||||
var/nutrition_examine = round(nutrition)
|
||||
var/t_He = "It" //capitalised for use at the start of each line.
|
||||
@@ -104,6 +108,9 @@
|
||||
return message
|
||||
|
||||
/mob/living/carbon/human/proc/examine_bellies()
|
||||
if(!show_pudge()) //Some clothing or equipment can hide this.
|
||||
return ""
|
||||
|
||||
var/message = ""
|
||||
|
||||
for (var/I in src.vore_organs)
|
||||
|
||||
Reference in New Issue
Block a user