MCE: fix cd time bug

This commit is contained in:
neon 2021-05-14 14:42:10 +01:00
parent 9f0573e1af
commit 721a888463

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();