diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm
index 21f2d03d45..a807e92354 100644
--- a/code/game/atoms_movable.dm
+++ b/code/game/atoms_movable.dm
@@ -1,6 +1,6 @@
/atom/movable
layer = 3
- appearance_flags = TILE_BOUND // VOREStation edit. Our PIXEL_SCALE is applied by pref in 02_size.dm
+ appearance_flags = TILE_BOUND | PIXEL_SCALE
var/last_move = null
var/anchored = 0
// var/elevation = 2 - not used anywhere
diff --git a/code/modules/client/preference_setup/vore/02_size.dm b/code/modules/client/preference_setup/vore/02_size.dm
index 0aa5bf3195..5bea55082a 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 = 1 // Preference toggle for sharp/fuzzy icon. Default sharp.
+ var/fuzzy = 0 // Preference toggle for sharp/fuzzy icon. Default sharp.
// Definition of the stuff for Sizing
/datum/category_item/player_setup_item/vore/size
@@ -45,12 +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
+ 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 ? "Sharp" : "Fuzzy"]
"
+ . += "Scaled Appearance: [pref.fuzzy ? "Fuzzy" : "Sharp"]
"
. += "
"
. += "Relative Weight: [pref.weight_vr]
"
. += "Weight Gain Rate: [pref.weight_gain]
"