summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/searchstorehandler.cpp7
-rw-r--r--src/net/tmwa/searchstorehandler.h5
2 files changed, 12 insertions, 0 deletions
diff --git a/src/net/tmwa/searchstorehandler.cpp b/src/net/tmwa/searchstorehandler.cpp
index 26e35725f..ef70b3d27 100644
--- a/src/net/tmwa/searchstorehandler.cpp
+++ b/src/net/tmwa/searchstorehandler.cpp
@@ -47,4 +47,11 @@ void SearchStoreHandler::handleMessage(Net::MessageIn &msg)
}
}
+void SearchStoreHandler::search(const StoreSearchType::Type type A_UNUSED,
+ const int minPrice A_UNUSED,
+ const int maxPrice A_UNUSED,
+ const int itemId A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/searchstorehandler.h b/src/net/tmwa/searchstorehandler.h
index f5c00a6c1..7750758f5 100644
--- a/src/net/tmwa/searchstorehandler.h
+++ b/src/net/tmwa/searchstorehandler.h
@@ -36,6 +36,11 @@ class SearchStoreHandler final : public MessageHandler,
A_DELETE_COPY(SearchStoreHandler)
void handleMessage(Net::MessageIn &msg) override final;
+
+ void search(const StoreSearchType::Type type,
+ const int minPrice,
+ const int maxPrice,
+ const int itemId) const override final;
};
} // namespace TmwAthena