evandrocoan / MultiModServer

It is a Multi-Mod plugin's configurations for Amx Mod X - https://forums.alliedmods.net/showthread.php?t=273018
GNU General Public License v3.0
17 stars 17 forks source link

Add explicit disabled and enabled values to all cvars on the config file #30

Closed evandrocoan closed 7 years ago

evandrocoan commented 7 years ago

Add explicit disabled and enabled values to all cvars on the config file

For example, this bellow:

// Indicates whether there should be a vote near the end 
// of the map to decide what the next map will be.
gal_endofmapvote 1

Should be like this:

// Indicates whether there should be a vote near the end 
// of the map to decide what the next map will be. (Default 1)
//
// 0 - do not to perform a automatic end map voting.
// 1 - to perform a automatic end map voting.
gal_endofmapvote 1