mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-12 08:27:24 +01:00
Merge pull request #1136 from DragonTrance/various-misc
Fixes events (times 3)
This commit is contained in:
@@ -48,9 +48,9 @@
|
||||
return FALSE
|
||||
if(players_amt < min_players)
|
||||
return FALSE
|
||||
if(gamemode_blacklist.len && (gamemode in gamemode_blacklist))
|
||||
if(gamemode_blacklist.len && (gamemode_blacklist.Find(gamemode)))
|
||||
return FALSE
|
||||
if(gamemode_whitelist.len && !(gamemode in gamemode_whitelist))
|
||||
if(gamemode_whitelist.len && !(gamemode_whitelist.Find(gamemode)))
|
||||
return FALSE
|
||||
if(map_blacklist.len && (SSmapping.config.map_file in map_blacklist)) //HYPER EDIT: certain maps will get special events
|
||||
return FALSE
|
||||
|
||||
Reference in New Issue
Block a user