diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-24 01:28:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-24 01:28:28 +0300 |
commit | e22f6d0070ea2b0102caf3b738fba703606e6bd4 (patch) | |
tree | e40148f0e08490d6f3ea4a3f480739c717d9a70a /src/gui/viewport.cpp | |
parent | 7f62fc6f4a1765d10cca3977cfbfe1917e4596fe (diff) | |
download | manaverse-e22f6d0070ea2b0102caf3b738fba703606e6bd4.tar.gz manaverse-e22f6d0070ea2b0102caf3b738fba703606e6bd4.tar.bz2 manaverse-e22f6d0070ea2b0102caf3b738fba703606e6bd4.tar.xz manaverse-e22f6d0070ea2b0102caf3b738fba703606e6bd4.zip |
First step of removing local pets (tmwa only).
Diffstat (limited to 'src/gui/viewport.cpp')
-rw-r--r-- | src/gui/viewport.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gui/viewport.cpp b/src/gui/viewport.cpp index d4b160068..ba42ee2a2 100644 --- a/src/gui/viewport.cpp +++ b/src/gui/viewport.cpp @@ -488,9 +488,6 @@ bool Viewport::leftMouseAction() case ActorType::Elemental: break; case ActorType::Unknown: -#ifdef TMWA_SUPPORT - case ActorType::LocalPet: -#endif case ActorType::Avatar: default: reportAlways("Left click on unknown actor type: %d", @@ -919,9 +916,6 @@ void Viewport::mouseMoved(MouseEvent &event) || type == ActorType::Npc || type == ActorType::Homunculus || type == ActorType::Mercenary -#ifdef TMWA_SUPPORT - || type == ActorType::LocalPet -#endif || type == ActorType::Pet)) { popupManager->hideTextPopup(); @@ -978,9 +972,6 @@ void Viewport::mouseMoved(MouseEvent &event) case ActorType::Npc: case ActorType::Monster: case ActorType::Portal: -#ifdef TMWA_SUPPORT - case ActorType::LocalPet: -#endif case ActorType::Pet: case ActorType::Mercenary: case ActorType::Homunculus: |