mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Changed: Simplify toString
This commit is contained in:
parent
9b8272b2bd
commit
02d8b7d400
3 changed files with 4 additions and 4 deletions
|
@ -894,7 +894,7 @@ void CObjectInteger::inPlaceCopy(const CObjectInteger &src)
|
|||
}
|
||||
|
||||
|
||||
std::string CObjectInteger::doToString() const { return NLMISC::toString("%" NL_I64 "d", _Value); }
|
||||
std::string CObjectInteger::doToString() const { return NLMISC::toString(_Value); }
|
||||
|
||||
void CObjectInteger::doSerialize(std::string& out, CSerializeContext& /* context */) const
|
||||
{
|
||||
|
|
|
@ -1002,7 +1002,7 @@ ENTITY_VARIABLE(Money, "Money")
|
|||
|
||||
if (get)
|
||||
{
|
||||
value = toString("%"NL_I64"u", c->getMoney());
|
||||
value = toString(c->getMoney());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1054,7 +1054,7 @@ ENTITY_VARIABLE(MoneyGuild, "MoneyGuild")
|
|||
|
||||
if (get)
|
||||
{
|
||||
value = toString("%"NL_I64"u", guild->getMoney());
|
||||
value = toString(guild->getMoney());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -1011,7 +1011,7 @@ NLMISC_COMMAND(getMoney, "get money of player", "<uid>")
|
|||
{
|
||||
GET_ACTIVE_CHARACTER
|
||||
|
||||
string value = toString("%"NL_I64"u", c->getMoney());
|
||||
string value = toString(c->getMoney());
|
||||
|
||||
log.displayNL(value.c_str());
|
||||
|
||||
|
|
Loading…
Reference in a new issue