diff --git a/code/ryzom/server/src/entities_game_service/mission_manager/missions_commands.cpp b/code/ryzom/server/src/entities_game_service/mission_manager/missions_commands.cpp index c61607e31..f7cd1b6af 100644 --- a/code/ryzom/server/src/entities_game_service/mission_manager/missions_commands.cpp +++ b/code/ryzom/server/src/entities_game_service/mission_manager/missions_commands.cpp @@ -1009,7 +1009,6 @@ NLMISC_COMMAND(getTarget, "get target of player", "") //---------------------------------------------------------------------------- NLMISC_COMMAND(getMoney, "get money of player", "") { - GET_ACTIVE_CHARACTER string value = toString("%"NL_I64"u", c->getMoney()); @@ -1023,7 +1022,6 @@ NLMISC_COMMAND(getMoney, "get money of player", "") //---------------------------------------------------------------------------- NLMISC_COMMAND(getPvpPoints, "get pvp points of player", "") { - GET_ACTIVE_CHARACTER string value = toString("%u", c->getPvpPoint()); @@ -1036,7 +1034,6 @@ NLMISC_COMMAND(getPvpPoints, "get pvp points of player", "") //---------------------------------------------------------------------------- NLMISC_COMMAND(getCivCultOrg, "get civ cult and organization of player", "") { - GET_ACTIVE_CHARACTER std::pair allegiance = c->getAllegiance();