From 77ad2b72980f1a91e320c6f3f0b864f32710e810 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 8 Jul 2023 11:58:23 -0400 Subject: [PATCH] Add smallclothes hands and feet gear --- mdlviewer/src/fullmodelviewer.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/mdlviewer/src/fullmodelviewer.cpp b/mdlviewer/src/fullmodelviewer.cpp index b0956b6..469d07b 100644 --- a/mdlviewer/src/fullmodelviewer.cpp +++ b/mdlviewer/src/fullmodelviewer.cpp @@ -136,6 +136,24 @@ void FullModelViewer::reloadGear() { gearView->addGear(info); } + + // smallclothes hands + { + GearInfo info = {}; + info.name = "Smallclothes Hands"; + info.slot = Slot::Hands; + + gearView->addGear(info); + } + + // smallclothes hands + { + GearInfo info = {}; + info.name = "Smallclothes Feet"; + info.slot = Slot::Feet; + + gearView->addGear(info); + } } void FullModelViewer::updateHeightScaling(float scale) {