Skip to content

Commit dced9eb

Browse files
Update cItem.cpp
1 parent dc28768 commit dced9eb

File tree

1 file changed

+6
-16
lines changed

1 file changed

+6
-16
lines changed

source/cItem.cpp

+6-16
Original file line numberDiff line numberDiff line change
@@ -1715,9 +1715,7 @@ bool CItem::DumpBody( std::ostream &outStream ) const
17151715
outStream << "Layer=0x" << static_cast<SI16>( GetLayer() ) << newLine;
17161716
outStream << "Cont=0x" << GetContSerial() << newLine;
17171717
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;
17211719
outStream << "More=0x" << GetTempVar( CITV_MORE ) << newLine;
17221720
outStream << "More012=0x" << GetTempVar( CITV_MORE0 ) << ",0x" << GetTempVar( CITV_MORE1 ) << ",0x" << GetTempVar( CITV_MORE2 ) << newLine;
17231721
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 )
21012099
{
21022100
rValue = true;
21032101
}
2104-
else if( UTag == "REGENHITS" )
2102+
else if( UTag == "REGENSTATS" )
21052103
{
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;
21182108
}
21192109
else if( UTag == "REPUTATION" )
21202110
{

0 commit comments

Comments
 (0)