@@ -1715,9 +1715,7 @@ bool CItem::DumpBody( std::ostream &outStream ) const
1715
1715
outStream << " Layer=0x" << static_cast <SI16>( GetLayer () ) << newLine;
1716
1716
outStream << " Cont=0x" << GetContSerial () << newLine;
1717
1717
outStream << " Creator=0x" << GetCreator () << newLine;
1718
- outStream << " RegenHits=" + std::to_string ( GetRegenHits () ) + newLine;
1719
- outStream << " RegenStam=" + std::to_string ( GetRegenStam () ) + newLine;
1720
- outStream << " RegenMana=" + std::to_string ( GetRegenMana () ) + newLine;
1718
+ outStream << " RegenStats=" + std::to_string ( GetRegenHits () ) + " ," + std::to_string ( GetRegenStam () ) + " ," + std::to_string ( GetRegenMana () ) + newLine;
1721
1719
outStream << " More=0x" << GetTempVar ( CITV_MORE ) << newLine;
1722
1720
outStream << " More012=0x" << GetTempVar ( CITV_MORE0 ) << " ,0x" << GetTempVar ( CITV_MORE1 ) << " ,0x" << GetTempVar ( CITV_MORE2 ) << newLine;
1723
1721
outStream << " MoreXYZ=0x" << GetTempVar ( CITV_MOREX ) << " ,0x" << GetTempVar ( CITV_MOREY ) << " ,0x" << GetTempVar ( CITV_MOREZ ) << newLine;
@@ -2101,20 +2099,12 @@ bool CItem::HandleLine( std::string &UTag, std::string &data )
2101
2099
{
2102
2100
rValue = true ;
2103
2101
}
2104
- else if ( UTag == " REGENHITS " )
2102
+ else if ( UTag == " REGENSTATS " )
2105
2103
{
2106
- SetRegenHits ( static_cast <SI16>( std::stoul ( oldstrutil::trim ( oldstrutil::removeTrailing ( data, " //" )), nullptr , 0 )));
2107
- rValue = true ;
2108
- }
2109
- else if ( UTag == " REGENSTAM" )
2110
- {
2111
- SetRegenStam ( static_cast <SI16>( std::stoul ( oldstrutil::trim ( oldstrutil::removeTrailing ( data, " //" )), nullptr , 0 )));
2112
- rValue = true ;
2113
- }
2114
- else if ( UTag == " REGENMANA" )
2115
- {
2116
- SetRegenMana ( static_cast <SI16>( std::stoul ( oldstrutil::trim ( oldstrutil::removeTrailing ( data, " //" )), nullptr , 0 )));
2117
- rValue = true ;
2104
+ SetRegenHits ( static_cast <SI16>( std::stoul ( oldstrutil::trim ( oldstrutil::removeTrailing ( csecs[0 ], " //" )), nullptr , 0 )));
2105
+ SetRegenStam ( static_cast <SI16>( std::stoul ( oldstrutil::trim ( oldstrutil::removeTrailing ( csecs[1 ], " //" )), nullptr , 0 )));
2106
+ SetRegenMana ( static_cast <SI16>( std::stoul ( oldstrutil::trim ( oldstrutil::removeTrailing ( csecs[2 ], " //" )), nullptr , 0 )));
2107
+ rValue = true ;
2118
2108
}
2119
2109
else if ( UTag == " REPUTATION" )
2120
2110
{
0 commit comments