From ca2f51b1a4531983b107aac9eb78770b981ed0f0 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Wed, 5 Aug 2020 02:10:13 -0400 Subject: [PATCH] fix --- js/003-data/miscData.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/003-data/miscData.js b/js/003-data/miscData.js index f1c8fbd9519..06a91e1fdb2 100644 --- a/js/003-data/miscData.js +++ b/js/003-data/miscData.js @@ -2270,19 +2270,19 @@ App.Data.misc = { name: "Platforms", value: "platform shoes", fs: "FSStatuesqueGlorification", - get rs() { return (boughtItem.clothing.heels); } + get rs() { return (V.boughtItem.shoes.heels); } }, { name: "Platform heels", value: "platform heels", fs: "FSStatuesqueGlorification", - get rs() { return (boughtItem.clothing.heels); } + get rs() { return (V.boughtItem.shoes.heels); } }, { name: "Painfully extreme platform heels", value: "extreme platform heels", fs: "FSStatuesqueGlorification", - get rs() { return (boughtItem.clothing.heels); } + get rs() { return (V.boughtItem.shoes.heels); } } ], -- GitLab