diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:59 +0300 |
commit | a9f6959a96395edc64ff57bf5ba1d75cca8e86c3 (patch) | |
tree | f6975bea7e87380ee7d063ccfb2efbc835341c91 /src/net/pethandler.h | |
parent | 3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9 (diff) | |
download | mv-a9f6959a96395edc64ff57bf5ba1d75cca8e86c3.tar.gz mv-a9f6959a96395edc64ff57bf5ba1d75cca8e86c3.tar.bz2 mv-a9f6959a96395edc64ff57bf5ba1d75cca8e86c3.tar.xz mv-a9f6959a96395edc64ff57bf5ba1d75cca8e86c3.zip |
Add missing const in net directory.
Diffstat (limited to 'src/net/pethandler.h')
-rw-r--r-- | src/net/pethandler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/pethandler.h b/src/net/pethandler.h index 0df7f257d..5c9099afa 100644 --- a/src/net/pethandler.h +++ b/src/net/pethandler.h @@ -39,7 +39,8 @@ class PetHandler notfinal const int petId, const int x, const int y) const = 0; - virtual void emote(const uint8_t emoteId, const int petId) = 0; + virtual void emote(const uint8_t emoteId, + const int petId) = 0; virtual void catchPet(const Being *const being) const = 0; |