monk-afk / filterplus

Chat filter and censor for Minetest. Includes mute command, player tags, and mention highlight.
MIT License
1 stars 0 forks source link

bad privilege check for blacklist command #4

Closed monk-afk closed 9 months ago

monk-afk commented 9 months ago

if minetest.check_player_privs(name, {server = true}) then

should be

if minetest.check_player_privs(name, {blacklist = true}) then

monk-afk commented 9 months ago

fixed