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) {