MCE: fix cd time bug

This commit is contained in:
neon 2021-05-14 14:42:10 +01:00
parent a76168e359
commit 2a7059f5e2

View File

@ -2118,6 +2118,8 @@ public int Native_ExcludeMapTime(Handle plugin, int numParams)
int NewCooldown = GetTime() + GetNativeCell(2);
if(NewCooldown > Cooldown)
Cooldown = GetNativeCell(2);
else
return true;
}
Cooldown += GetTime();