diff options
author | Lars Müller <34514239+appgurueu@users.noreply.github.com> | 2022-06-11 20:00:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-11 20:00:40 +0200 |
commit | f4a53f7ee6fb5482f8193353c35be54b40533d6f (patch) | |
tree | fbbf1f323a0f0340e9f07c851bfba7c23e30b670 /src/client/client.cpp | |
parent | 3eafcab64ecaf8d00a9264b441e996825a6a31bd (diff) | |
download | minetest-f4a53f7ee6fb5482f8193353c35be54b40533d6f.tar.gz minetest-f4a53f7ee6fb5482f8193353c35be54b40533d6f.tar.bz2 minetest-f4a53f7ee6fb5482f8193353c35be54b40533d6f.zip |
No damage effects on hp_max change (#11846)
Diffstat (limited to 'src/client/client.cpp')
-rw-r--r-- | src/client/client.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/client.cpp b/src/client/client.cpp index d81ee434e..37d4bd816 100644 --- a/src/client/client.cpp +++ b/src/client/client.cpp @@ -493,6 +493,7 @@ void Client::step(float dtime) ClientEvent *event = new ClientEvent(); event->type = CE_PLAYER_DAMAGE; event->player_damage.amount = damage; + event->player_damage.effect = true; m_client_event_queue.push(event); } } |