diff --git a/plugins/basevotes.sp b/plugins/basevotes.sp index 9f98c4b1..c426ecc7 100644 --- a/plugins/basevotes.sp +++ b/plugins/basevotes.sp @@ -405,7 +405,7 @@ bool TestVoteDelay(int client) { if (delay > 60) { - ReplyToCommand(client, "[SM] %t", "Vote Delay Minutes", delay % 60); + ReplyToCommand(client, "[SM] %t", "Vote Delay Minutes", (delay / 60)); } else { diff --git a/plugins/funvotes.sp b/plugins/funvotes.sp index 1a5b12e7..4587dfbf 100644 --- a/plugins/funvotes.sp +++ b/plugins/funvotes.sp @@ -324,7 +324,7 @@ bool TestVoteDelay(int client) { if (delay > 60) { - ReplyToCommand(client, "[SM] %t", "Vote Delay Minutes", delay % 60); + ReplyToCommand(client, "[SM] %t", "Vote Delay Minutes", (delay / 60)); } else {