@@ -38,19 +38,19 @@ nofArmored::nofArmored(SerializedGameData& sgd, const unsigned obj_id) : noFigur
3838void nofArmored::DrawArmorWalking (DrawPoint drawPt)
3939{
4040 if (HasArmor ())
41- DrawArmor (drawPt, CalcFigurRelative ( ));
41+ DrawArmor (InterpolateWalkDrawPos (drawPt ));
4242}
4343
44- void nofArmored::DrawArmor (DrawPoint drawPt, DrawPoint offset )
44+ void nofArmored::DrawArmor (DrawPoint drawPt)
4545{
4646 if (world->GetGGS ().isEnabled (AddonId::MILITARY_HITPOINTS))
4747 {
48- SmallFont->Draw (drawPt + DrawPoint (7 , -20 ) + offset , " +" , FontStyle::CENTER, COLOR_RED);
49- SmallFont->Draw (drawPt + DrawPoint (10 , -20 ) + offset , " 1" , FontStyle::CENTER, COLOR_RED);
48+ SmallFont->Draw (drawPt + DrawPoint (7 , -20 ), " +" , FontStyle::CENTER, COLOR_RED);
49+ SmallFont->Draw (drawPt + DrawPoint (10 , -20 ), " 1" , FontStyle::CENTER, COLOR_RED);
5050 }
5151
5252 LOADER.GetImageN (" leather_bobs" , leatheraddon::bobIndex[leatheraddon::BobTypes::DONKEY_BOAT_CARRYING_ARMOR_WARE])
53- ->DrawFull (drawPt + DrawPoint (0 , -22 ) + offset );
53+ ->DrawFull (drawPt + DrawPoint (0 , -22 ));
5454}
5555
5656void nofArmored::DrawArmorNotWalking (DrawPoint drawPt)
0 commit comments