1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 06:11:47 +02:00

[_misc & fishing & whoison] Updates and fixes

- _misc : Fix noshout (see aebd448148)
 - fishing : update submodule's commit's reference
 - whoison : fix timeonline (see eab339a3d3)
This commit is contained in:
LeMagnesium
2015-09-26 23:11:12 +02:00
parent 7a1f3beb0a
commit 30c8e8ebee
3 changed files with 6 additions and 3 deletions

View File

@ -16,7 +16,7 @@ end
minetest.register_on_joinplayer(function(player)
local name = player:get_player_name()
if not minetest.check_player_privs(name, {interact=true}) and players[name] == nil then
if minetest.check_player_privs(name, {shout=false}) and players[name] == nil then
minetest.after(5, tick, name)
players[name] = true
end