Adds micro/macro and weight gain options to the character setup screen.

Moves the location of saved micro/macro variables to the main /datum/preferences for ease of use.
This commit is contained in:
Leshana
2016-05-12 21:38:41 -04:00
parent 91545dc643
commit 80a95b0cf5
5 changed files with 97 additions and 11 deletions
-4
View File
@@ -210,8 +210,6 @@
P.digestable = src.digestable
P.belly_prefs = src.vore_organs
P.weight_gain = src.weight_gain
P.weight_loss = src.weight_loss
return 1
@@ -227,8 +225,6 @@
src.digestable = P.digestable
src.vore_organs = P.belly_prefs
src.weight_gain = P.weight_gain
src.weight_loss = P.weight_loss
if(!src.vore_organs) //Emergency double-backup to stop runtimes from doing .len on this.
vore_organs = list()
-6
View File
@@ -43,8 +43,6 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
//Actual preferences
var/digestable = 1
var/list/belly_prefs = list()
var/weight_gain = 1
var/weight_loss = 0.5
//Mechanically required
var/path
@@ -103,8 +101,6 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
S["digestable"] >> digestable
S["belly_prefs"] >> belly_prefs
S["weight_gain"] >> weight_gain
S["weight_loss"] >> weight_loss
return 1
@@ -117,7 +113,5 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
S["digestable"] << digestable
S["belly_prefs"] << belly_prefs
S["weight_gain"] << weight_gain
S["weight_loss"] << weight_loss
return 1