fix return type
All checks were successful
Linux arm64 / Build (push) Successful in 4m44s

This commit is contained in:
2024-03-26 20:25:15 +01:00
parent e254452a6c
commit 255eafa35e

View File

@@ -18,7 +18,7 @@ class UpdateHealthPacket : public Packet {
virtual void Deserialize(DataBuffer& data);
virtual void Dispatch(PacketHandler* handler) const;
std::uint8_t GetNewHealth() const {
float GetNewHealth() const {
return m_NewHealth;
}