summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorKenpachi Developer <Kenpachi.Developer@gmx.de>2020-06-22 05:16:46 +0200
committerKenpachi Developer <Kenpachi.Developer@gmx.de>2020-06-22 05:16:46 +0200
commit6f4439ee2182dd3421ff50c7b479c1b9e7f02fcb (patch)
tree81c6bf34b15fef832088ba85d74c99418559a98d /src/map/atcommand.c
parent18bccc7a437fb11dd65a87b860c0183308306c1b (diff)
downloadhercules-6f4439ee2182dd3421ff50c7b479c1b9e7f02fcb.tar.gz
hercules-6f4439ee2182dd3421ff50c7b479c1b9e7f02fcb.tar.bz2
hercules-6f4439ee2182dd3421ff50c7b479c1b9e7f02fcb.tar.xz
hercules-6f4439ee2182dd3421ff50c7b479c1b9e7f02fcb.zip
Remove/move unnecessarily calling clif_send_petstatus()
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 3b4334275..9d5c601bf 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -2810,10 +2810,8 @@ ACMD(petfriendly)
return false;
}
- if (friendly != pd->pet.intimate) { // No need to update the pet's status if intimacy value won't change.
+ if (friendly != pd->pet.intimate) // No need to update the pet's status if intimacy value won't change.
pet->set_intimate(pd, friendly);
- clif->send_petstatus(sd);
- }
clif->message(fd, msg_fd(fd, 182)); // Pet intimacy changed. (Send message regardless of value has changed or not.)
@@ -2854,10 +2852,8 @@ ACMD(pethungry)
return false;
}
- if (hungry != pd->pet.hungry) { // No need to update the pet's status if hunger value won't change.
+ if (hungry != pd->pet.hungry) // No need to update the pet's status if hunger value won't change.
pet->set_hunger(pd, hungry);
- clif->send_petstatus(sd);
- }
clif->message(fd, msg_fd(fd, 185)); // Pet hunger changed. (Send message regardless of value has changed or not.)