summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/localplayer.cpp8
-rw-r--r--src/localplayer.h2
2 files changed, 0 insertions, 10 deletions
diff --git a/src/localplayer.cpp b/src/localplayer.cpp
index c6ce6fc5..7d3ff3ab 100644
--- a/src/localplayer.cpp
+++ b/src/localplayer.cpp
@@ -195,14 +195,6 @@ void LocalPlayer::setName(const std::string &name)
}
}
-void LocalPlayer::updateCoords()
-{
- if (mName)
- {
- mName->adviseXY(mPx + NAME_X_OFFSET, mPy + NAME_Y_OFFSET);
- }
-}
-
void LocalPlayer::nextStep()
{
if (mPath.empty())
diff --git a/src/localplayer.h b/src/localplayer.h
index 28551a22..76c810bb 100644
--- a/src/localplayer.h
+++ b/src/localplayer.h
@@ -271,8 +271,6 @@ class LocalPlayer : public Player
// Load the target cursors into memory
void initTargetCursor();
-
- virtual void updateCoords();
};
extern LocalPlayer *player_node;