Configs now support "1" in addition to the previous "yes" and "on" settings.
This commit is contained in:
		| @@ -900,7 +900,7 @@ public Action:ConfigReloadAllCommand(client, argc) | ||||
| stock bool:ConfigSettingToBool(const String:option[]) | ||||
| { | ||||
|     // If option is equal to "yes," then return true. | ||||
|     if (StrEqual(option, "yes", false) || StrEqual(option, "on", false)) | ||||
|     if (StrEqual(option, "yes", false) || StrEqual(option, "on", false) || StrEqual(option, "1", false)) | ||||
|     { | ||||
|         return true; | ||||
|     } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user