delay formating.zip
Description
set sm_vote_delay above 60s, 900 for example
Problematic Code (or Steps to Reproduce)
Reply to command after CheckVoteDelay() when delay > 60 on basevotes.sp or funvotes.sp are wrong.
ReplyToCommand(client, "[SM] %t", "Vote Delay Minutes", delay % 60);
must be replaced by:
ReplyToCommand(client, "[SM] %t", "Vote Delay Minutes", (delay / 60) % 60);
otherwise, seconds are only displayed when its above minute ...
Issue is present on basevotes.sp and on funvotes.sp
fixed files attached to this issue
delay formating.zip