Skip to content

Commit f9bd007

Browse files
committed
rtv: block rtv if vote will be in next round
1 parent c49c6e8 commit f9bd007

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

addons/amxmodx/scripting/map_manager_rtv.sma

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#endif
88

99
#define PLUGIN "Map Manager: Rtv"
10-
#define VERSION "0.0.2"
10+
#define VERSION "0.0.3"
1111
#define AUTHOR "Mistrick"
1212

1313
#pragma semicolon 1
@@ -69,7 +69,7 @@ public client_disconnected(id)
6969
}
7070
public clcmd_rtv(id)
7171
{
72-
if(is_vote_started() || is_vote_finished()) {
72+
if(is_vote_started() || is_vote_finished() || is_vote_will_in_next_round()) {
7373
// add msg?
7474
return PLUGIN_HANDLED;
7575
}

0 commit comments

Comments
 (0)