Fuck around and find out
This commit is contained in:
@@ -1383,6 +1383,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
dat += "<h2>Weight prefs</h2>"
|
||||
dat += "<b>Maximum Weight:</b><a href='?_src_=prefs;preference=max_fatness'>[max_weight == FALSE ? "None" : max_weight]</a><BR>"
|
||||
dat += "<b>NonCon - Weight Gain:</b><a href='?_src_=prefs;preference=noncon_weight_gain'>[noncon_weight_gain == TRUE ? "Enabled" : "Disabled"]</a><BR>"
|
||||
dat += "<b>Show that you want to be confronted:</b><a href='?_src_=prefs;preference=trouble_seeker'>[trouble_seeker == TRUE ? "Enabled" : "Disabled"]</a><BR>"
|
||||
dat += "<b>Bot Feeding:</b><a href='?_src_=prefs;preference=bot_feeding'>[bot_feeding == TRUE ? "Enabled" : "Disabled"]</a><BR>"
|
||||
dat += "<b>Blueberry Inflation:</b><a href='?_src_=prefs;preference=blueberry_inflation'>[blueberry_inflation == TRUE ? "Enabled" : "Disabled"]</a><BR>"
|
||||
|
||||
@@ -3401,6 +3402,8 @@ GLOBAL_LIST_EMPTY(preferences_datums)
|
||||
weight_gain_permanent = !weight_gain_permanent
|
||||
if("noncon_weight_gain")
|
||||
noncon_weight_gain = !noncon_weight_gain
|
||||
if("trouble_seeker")
|
||||
trouble_seeker = !trouble_seeker
|
||||
if("bot_feeding")
|
||||
bot_feeding = !bot_feeding
|
||||
if("stuckage")
|
||||
|
||||
@@ -933,6 +933,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
|
||||
S["wg_rate"] >> wg_rate
|
||||
S["wl_rate"] >> wl_rate
|
||||
S["noncon_weight_gain"] >> noncon_weight_gain
|
||||
S["trouble_seeker"] >> trouble_seeker
|
||||
S["bot_feeding"] >> bot_feeding
|
||||
S["max_weight"] >> max_weight
|
||||
S["helplessness_no_movement"] >> helplessness_no_movement
|
||||
@@ -1216,6 +1217,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
|
||||
WRITE_FILE(S["wg_rate"], wg_rate)
|
||||
WRITE_FILE(S["wl_rate"], wl_rate)
|
||||
WRITE_FILE(S["noncon_weight_gain"], noncon_weight_gain)
|
||||
WRITE_FILE(S["trouble_seeker"], trouble_seeker)
|
||||
WRITE_FILE(S["bot_feeding"], bot_feeding)
|
||||
WRITE_FILE(S["max_weight"], max_weight)
|
||||
WRITE_FILE(S["helplessness_no_movement"], helplessness_no_movement)
|
||||
|
||||
@@ -172,6 +172,8 @@
|
||||
//GS13 EDIT START
|
||||
if(client?.prefs?.noncon_weight_gain)
|
||||
msg += "<span class='purple'><b>Non-con fattening is allowed</b></span>\n"
|
||||
if(client?.prefs?.trouble_seeker)
|
||||
msg += "<span class='purple'><b>[t_He] seems to want to be confronted.</b></span>\n"
|
||||
//GS13 EDIT END
|
||||
|
||||
var/trait_exam = common_trait_examine()
|
||||
|
||||
@@ -429,6 +429,8 @@
|
||||
//GS13 EDIT START
|
||||
if(client?.prefs?.noncon_weight_gain)
|
||||
. += "\n<span class='purple'><b>Non-con fattening is allowed</b></span>\n"
|
||||
if(client?.prefs?.trouble_seeker)
|
||||
. += "<span class='purple'><b>[t_He] seems to want to be confronted.</b></span>\n"
|
||||
//GS13 EDIT END
|
||||
|
||||
var/trait_exam = common_trait_examine()
|
||||
|
||||
Reference in New Issue
Block a user