mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-11 16:08:32 +01:00
Merge pull request #203 from Alphas00/master
Berry juice breast fluid fix, Mob resize size tweak
This commit is contained in:
@@ -947,7 +947,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
if(/datum/reagent/consumable/nutriment)
|
||||
dat += "<a style='display:block;width:50px' href='?_src_=prefs;preference=breasts_fluid;task=input'>Nutriment</a>"
|
||||
if(/datum/reagent/blueberry_juice)
|
||||
dat += "<a style='display:block;width:50px' href='?_src_=prefs;preference=balls_fluid;task=input'>Berry Juice</a>"
|
||||
dat += "<a style='display:block;width:50px' href='?_src_=prefs;preference=breasts_fluid;task=input'>Berry Juice</a>"
|
||||
else
|
||||
dat += "<a style='display:block;width:50px' href='?_src_=prefs;preference=breasts_fluid;task=input'>Nothing?</a>"
|
||||
//This else is a safeguard for errors, and if it happened, they wouldn't be able to change this pref,
|
||||
|
||||
@@ -250,9 +250,9 @@ mob/living/get_effective_size()
|
||||
mob_size = 0
|
||||
if(size_multiplier < 1)
|
||||
mob_size = 1
|
||||
if(size_multiplier == 1)
|
||||
if(size_multiplier <= 2)
|
||||
mob_size = 2 //the default human size
|
||||
if(size_multiplier > 1)
|
||||
if(size_multiplier > 2)
|
||||
mob_size = 3
|
||||
|
||||
//Proc for instantly grabbing valid size difference. Code optimizations soon(TM)
|
||||
|
||||
Reference in New Issue
Block a user