multitheftauto / mtasa-resources

This project maintains a list of up-to-date resources that come with Multi Theft Auto.
https://multitheftauto.com
MIT License
151 stars 149 forks source link

votemanager: changed 'not x == y' to 'x ~= y' to appease lint #434

Closed Dark-Dragon closed 1 year ago

Dark-Dragon commented 1 year ago

Lint doesn't like this line if exports.mapmanager:isGamemode(gamemode) and not exports.mapmanager:getRunningGamemode() == gamemode then

It responds with:

[managers]/votemanager/votemanager_polls.lua:533:51: Error prone negation: negation is executed before relational operator.

Hopefully it likes this new negationless line better. if exports.mapmanager:isGamemode(gamemode) and exports.mapmanager:getRunningGamemode() ~= gamemode then