summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-06-22 22:24:24 +0300
committerAndrei Karas <akaras@inbox.ru>2017-06-22 22:24:24 +0300
commitf6596726b6978a7380de163740e6b65c8394ca42 (patch)
treed1264b5536c1aeefb791b5e8d27b2c9500fc7cca /src
parent92eb0630eb067fbe0a18edb93a02f6fd424c3212 (diff)
downloadplus-f6596726b6978a7380de163740e6b65c8394ca42.tar.gz
plus-f6596726b6978a7380de163740e6b65c8394ca42.tar.bz2
plus-f6596726b6978a7380de163740e6b65c8394ca42.tar.xz
plus-f6596726b6978a7380de163740e6b65c8394ca42.zip
Move pets actions from actions.cpp into pets.cpp
Diffstat (limited to 'src')
-rw-r--r--src/actions/actions.cpp15
-rw-r--r--src/actions/actions.h2
-rw-r--r--src/actions/pets.cpp14
-rw-r--r--src/actions/pets.h2
-rw-r--r--src/dyetool/actions/actions.cpp2
-rw-r--r--src/dyetool/actions/pets.cpp2
6 files changed, 18 insertions, 19 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 96a6e48ca..c5bbf075b 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -92,7 +92,6 @@
#include "net/net.h"
#include "net/npchandler.h"
#include "net/playerhandler.h"
-#include "net/pethandler.h"
#include "net/serverfeatures.h"
#include "net/uploadcharinfo.h"
#include "net/tradehandler.h"
@@ -1617,20 +1616,6 @@ impHandler0(homunculusFeed)
return true;
}
-impHandler0(petFeed)
-{
- if (petHandler != nullptr)
- petHandler->feed();
- return true;
-}
-
-impHandler0(petDropLoot)
-{
- if (petHandler != nullptr)
- petHandler->dropLoot();
- return true;
-}
-
impHandler(useItem)
{
const int itemId = atoi(event.args.c_str());
diff --git a/src/actions/actions.h b/src/actions/actions.h
index bbe1c4847..83072680c 100644
--- a/src/actions/actions.h
+++ b/src/actions/actions.h
@@ -104,8 +104,6 @@ namespace Actions
decHandler(mercenaryToMaster);
decHandler(homunculusToMaster);
decHandler(homunculusFeed);
- decHandler(petFeed);
- decHandler(petDropLoot);
decHandler(useItem);
decHandler(useItemInv);
decHandler(invToStorage);
diff --git a/src/actions/pets.cpp b/src/actions/pets.cpp
index 79e004f15..01542edf4 100644
--- a/src/actions/pets.cpp
+++ b/src/actions/pets.cpp
@@ -217,4 +217,18 @@ impHandler(petMove)
return false;
}
+impHandler0(petFeed)
+{
+ if (petHandler != nullptr)
+ petHandler->feed();
+ return true;
+}
+
+impHandler0(petDropLoot)
+{
+ if (petHandler != nullptr)
+ petHandler->dropLoot();
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/pets.h b/src/actions/pets.h
index 750ba2366..a3ac0795f 100644
--- a/src/actions/pets.h
+++ b/src/actions/pets.h
@@ -41,6 +41,8 @@ namespace Actions
decHandler(petDirectLeft);
decHandler(petDirectRight);
decHandler(petMove);
+ decHandler(petFeed);
+ decHandler(petDropLoot);
} // namespace Actions
#undef decHandler
diff --git a/src/dyetool/actions/actions.cpp b/src/dyetool/actions/actions.cpp
index a09685e03..58353b699 100644
--- a/src/dyetool/actions/actions.cpp
+++ b/src/dyetool/actions/actions.cpp
@@ -100,8 +100,6 @@ impHandlerVoid(mercenaryFire)
impHandlerVoid(mercenaryToMaster)
impHandlerVoid(homunculusToMaster)
impHandlerVoid(homunculusFeed)
-impHandlerVoid(petFeed)
-impHandlerVoid(petDropLoot)
impHandlerVoid(useItem)
impHandlerVoid(useItemInv)
impHandlerVoid(invToStorage)
diff --git a/src/dyetool/actions/pets.cpp b/src/dyetool/actions/pets.cpp
index 9f12a76e0..16658ebc7 100644
--- a/src/dyetool/actions/pets.cpp
+++ b/src/dyetool/actions/pets.cpp
@@ -41,5 +41,7 @@ impHandlerVoid(petDirectDown)
impHandlerVoid(petDirectLeft)
impHandlerVoid(petDirectRight)
impHandlerVoid(petMove)
+impHandlerVoid(petFeed)
+impHandlerVoid(petDropLoot)
} // namespace Actions