summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/serverfeatures.cpp5
-rw-r--r--src/net/tmwa/serverfeatures.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/serverfeatures.cpp b/src/net/tmwa/serverfeatures.cpp
index 58a62f1f6..9e68116da 100644
--- a/src/net/tmwa/serverfeatures.cpp
+++ b/src/net/tmwa/serverfeatures.cpp
@@ -209,4 +209,9 @@ bool ServerFeatures::haveTalkPet() const
return true;
}
+bool ServerFeatures::haveMovePet() const
+{
+ return true;
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/serverfeatures.h b/src/net/tmwa/serverfeatures.h
index e3dba132e..48826f303 100644
--- a/src/net/tmwa/serverfeatures.h
+++ b/src/net/tmwa/serverfeatures.h
@@ -103,6 +103,8 @@ class ServerFeatures final : public Net::ServerFeatures
bool haveCart() const override final;
bool haveTalkPet() const override final;
+
+ bool haveMovePet() const override final;
};
} // namespace TmwAthena