Changed: Minor changes

This commit is contained in:
kervala 2016-02-20 19:26:43 +01:00
parent 7ecc271b58
commit 319fad1555

View file

@ -1009,7 +1009,6 @@ NLMISC_COMMAND(getTarget, "get target of player", "<uid>")
//----------------------------------------------------------------------------
NLMISC_COMMAND(getMoney, "get money of player", "<uid>")
{
GET_ACTIVE_CHARACTER
string value = toString("%"NL_I64"u", c->getMoney());
@ -1023,7 +1022,6 @@ NLMISC_COMMAND(getMoney, "get money of player", "<uid>")
//----------------------------------------------------------------------------
NLMISC_COMMAND(getPvpPoints, "get pvp points of player", "<uid>")
{
GET_ACTIVE_CHARACTER
string value = toString("%u", c->getPvpPoint());
@ -1036,7 +1034,6 @@ NLMISC_COMMAND(getPvpPoints, "get pvp points of player", "<uid>")
//----------------------------------------------------------------------------
NLMISC_COMMAND(getCivCultOrg, "get civ cult and organization of player", "<uid>")
{
GET_ACTIVE_CHARACTER
std::pair<PVP_CLAN::TPVPClan, PVP_CLAN::TPVPClan> allegiance = c->getAllegiance();