Revert "Enable zooming by default"
This reverts commit 7bbb105488
.
Reason: Zooming is actually not possible in Minecraft.
This commit is contained in:
parent
7bbb105488
commit
8fcbda3765
6 changed files with 0 additions and 29 deletions
|
@ -1,6 +0,0 @@
|
|||
Allows zooming by default for all players.
|
||||
This is done by granting the zoom privilege when a player joins.
|
||||
|
||||
Works for Minetest 0.4.16.
|
||||
|
||||
License: WTFPL
|
|
@ -1 +0,0 @@
|
|||
Allows zooming by default for all players.
|
|
@ -1,12 +0,0 @@
|
|||
minetest.register_on_joinplayer(function(player)
|
||||
local priv = minetest.setting_getbool("allow_zoom")
|
||||
if priv == nil then
|
||||
priv = true
|
||||
end
|
||||
if priv then
|
||||
local name = player:get_player_name()
|
||||
local privs = minetest.get_player_privs(name)
|
||||
privs.zoom = true
|
||||
minetest.set_player_privs(name, privs)
|
||||
end
|
||||
end)
|
|
@ -1 +0,0 @@
|
|||
name = allow_zoom
|
|
@ -1,4 +0,0 @@
|
|||
# This allows zooming by default for all players.
|
||||
# More specifically, players get the zoom privilege automatically granted on
|
||||
# when they join.
|
||||
allow_zoom (Allow zooming) bool true
|
Loading…
Add table
Add a link
Reference in a new issue