From bfc9381a6b60cba4ecd02cfafa3db3151d02727a Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 6 Jan 2016 16:03:20 +0100 Subject: [PATCH] Fixed: Compilation --- .../mission_manager/missions_commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 8844f0484..ef0ffa25b 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 @@ -1067,7 +1067,7 @@ NLMISC_COMMAND(accessPowo, "give access to the powo", " player_name number" uint16 ownerId = buildingPlayer->getOwnerIdx( entityBase->getId() ); sint32 cell; buildingPlayer->addUser(c, 0, ownerId, cell); - c->setPowoCell(cell); +// c->setPowoCell(cell); CBuildingManager::getInstance()->setRoomLifeTime(cell, TGameCycle(NLMISC::TGameTime(4*60*60) / CTickEventHandler::getGameTimeStep())); log.displayNL("%d", cell); } @@ -1098,7 +1098,7 @@ NLMISC_COMMAND(slide, "slide to the powo", " x y cell [z] [h]") sint32 x; sint32 y; - sint32 cell = c->getPowoCell(); + sint32 cell = 0; // c->getPowoCell(); sint32 z = 0; float h = 0;