From 807035c32150b50e2dcff398db5baa016e94f726 Mon Sep 17 00:00:00 2001 From: Dydzio Date: Mon, 25 Mar 2024 09:21:42 +0100 Subject: [PATCH] temporarily add TODO's --- client/adventureMap/AdventureMapInterface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/adventureMap/AdventureMapInterface.cpp b/client/adventureMap/AdventureMapInterface.cpp index c2c6fe2b1..c5340b185 100644 --- a/client/adventureMap/AdventureMapInterface.cpp +++ b/client/adventureMap/AdventureMapInterface.cpp @@ -636,7 +636,7 @@ void AdventureMapInterface::onTileHovered(const int3 &mapPos) } else { - std::string hlp = CGI->mh->getTerrainDescr(mapPos, false); + std::string hlp = CGI->mh->getTerrainDescr(mapPos, false); //TODO: possible to get info about invisible tiles GH.statusbar()->write(hlp); } @@ -659,7 +659,7 @@ void AdventureMapInterface::onTileHovered(const int3 &mapPos) const TerrainTile * t = LOCPLINT->cb->getTileForDimensionDoor(mapPos, LOCPLINT->localState->getCurrentHero()); int3 heroPosition = LOCPLINT->localState->getCurrentArmy()->getSightCenter(); if(t && t->isClear(LOCPLINT->cb->getTile(heroPosition))/* && isInScreenRange(hpos, mapPos)*/) - CCS->curh->set(Cursor::Map::TELEPORT); + CCS->curh->set(Cursor::Map::TELEPORT); //TODO: something wrong with beyond east spell range border cursor on arrogance after TP-ing near underground portal on previous day else CCS->curh->set(Cursor::Map::POINTER); return;