diff --git a/code/modules/client/preference_setup/vore/02_size.dm b/code/modules/client/preference_setup/vore/02_size.dm
index 3293b45520..0aa5bf3195 100644
--- a/code/modules/client/preference_setup/vore/02_size.dm
+++ b/code/modules/client/preference_setup/vore/02_size.dm
@@ -11,7 +11,7 @@
var/weight_vr = 137 // bodyweight of character (pounds, because I'm not doing the math again -Spades)
var/weight_gain = 100 // Weight gain rate.
var/weight_loss = 50 // Weight loss rate.
- var/fuzzy = 0 // Preference toggle for sharp/fuzzy icon. Default sharp.
+ var/fuzzy = 1 // Preference toggle for sharp/fuzzy icon. Default sharp.
// Definition of the stuff for Sizing
/datum/category_item/player_setup_item/vore/size
@@ -45,11 +45,12 @@
character.weight_gain = pref.weight_gain
character.weight_loss = pref.weight_loss
character.fuzzy = pref.fuzzy
+ character.appearance_flags |= pref.fuzzy*PIXEL_SCALE
/datum/category_item/player_setup_item/vore/size/content(var/mob/user)
. += "
"
. += "Scale: [round(pref.size_multiplier*100)]%
"
- . += "Scaled Appearance: [pref.fuzzy ? "Fuzzy" : "Sharp"]
"
+ . += "Scaled Appearance: [pref.fuzzy ? "Sharp" : "Fuzzy"]
"
. += "
"
. += "Relative Weight: [pref.weight_vr]
"
. += "Weight Gain Rate: [pref.weight_gain]
"
diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index 7d82829b08..bf5378bec2 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -19,7 +19,7 @@
var/noisy = 0 // Toggle audible hunger.
var/absorbing_prey = 0 // Determines if the person is using the succubus drain or not. See station_special_abilities_vr.
var/drain_finalized = 0 // Determines if the succubus drain will be KO'd/absorbed. Can be toggled on at any time.
- var/fuzzy = 0 // Preference toggle for sharp/fuzzy icon.
+ var/fuzzy = 1 // Preference toggle for sharp/fuzzy icon.
//
// Hook for generic creation of stuff on new creatures
@@ -32,8 +32,7 @@
return 1
M.verbs += /mob/living/proc/insidePanel
- if(M.fuzzy != 1)
- M.appearance_flags |= PIXEL_SCALE
+ //M.appearance_flags |= PIXEL_SCALE // Moved to 02_size.dm
//Tries to load prefs if a client is present otherwise gives freebie stomach
if(!M.vore_organs || !M.vore_organs.len)