mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 13:09:11 +01:00
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:
@@ -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()
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user