mirror of
https://github.com/minetest/minetest.git
synced 2024-11-09 17:23:45 +01:00
if creative mode and player has no build privileges, cannot drop items.
This commit is contained in:
parent
db495668ae
commit
d4df20a913
@ -2923,6 +2923,18 @@ void Server::ProcessData(u8 *data, u32 datasize, u16 peer_id)
|
||||
return;
|
||||
}
|
||||
|
||||
/*
|
||||
If in creative mode, item dropping is disabled unless
|
||||
player has build privileges
|
||||
*/
|
||||
if(g_settings.getBool("creative_mode") &&
|
||||
(getPlayerPrivs(player) & PRIV_BUILD) == 0)
|
||||
{
|
||||
derr_server<<"Not allowing player to drop item: "
|
||||
"creative mode and no build privs"<<std::endl;
|
||||
return;
|
||||
}
|
||||
|
||||
dout_server<<"Placing a miscellaneous item on map"
|
||||
<<std::endl;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user