1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 02:45:32 +00:00

Fix type mismatch

This commit is contained in:
Koncord 2016-12-21 15:46:02 +08:00
parent 0d9a4f2b6f
commit af7b232789

View file

@ -289,13 +289,13 @@ void Networking::processPlayerPacket(RakNet::Packet *packet)
Player *killer = Players::getPlayer(player->getLastAttackerId());
short reason = 0; // unknown;
int secondsSinceLastAttacker = std::chrono::duration_cast<std::chrono::duration<double>>(
std::chrono::steady_clock::now() - player->getLastAttackerTime()).count();
double secondsSinceLastAttacker = chrono::duration_cast<chrono::duration<double>>(
chrono::steady_clock::now() - player->getLastAttackerTime()).count();
if (!killer)
killer = player;
if (secondsSinceLastAttacker < 3)
if (secondsSinceLastAttacker < 3.0f)
reason = 1; // killed
else
reason = 2; //suicide