mapvote 1.0.2

Changed all notifies with the mapvote prefix to avoid conflicts with other scripts

Fixed some typos in the code comments

Removed self notifyonplayercommand("unselect", "+frag"); as it should have been removed in 1.0.1
This commit is contained in:
Resxt
2022-10-21 21:18:39 +02:00
parent 72211fc2a2
commit 98d005b57e
4 changed files with 23 additions and 26 deletions

View File

@ -16,8 +16,8 @@ OnKillcamEnd()
return false;
wait 3;
level notify("vote_start");
level waittill("vote_end");
level notify("mapvote_vote_start");
level waittill("mapvote_vote_end");
return false;
}
@ -26,7 +26,7 @@ OnKillcamEnd()
return true;
wait 3;
level notify("vote_start");
level waittill("vote_end");
level notify("mapvote_vote_start");
level waittill("mapvote_vote_end");
return true;
}