mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	Disallow formspec debug if the player does not have the debug privilege (#14753)
This commit is contained in:
		@@ -1914,6 +1914,10 @@ void Game::updateDebugState()
 | 
			
		||||
	if (!has_debug) {
 | 
			
		||||
		draw_control->show_wireframe = false;
 | 
			
		||||
		m_flags.disable_camera_update = false;
 | 
			
		||||
		auto formspec = m_game_ui->getFormspecGUI();
 | 
			
		||||
		if (formspec) {
 | 
			
		||||
			formspec->setDebugView(false);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// noclip
 | 
			
		||||
 
 | 
			
		||||
@@ -4184,8 +4184,10 @@ bool GUIFormSpecMenu::OnEvent(const SEvent& event)
 | 
			
		||||
			m_client->makeScreenshot();
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if (event.KeyInput.PressedDown && kp == getKeySetting("keymap_toggle_debug"))
 | 
			
		||||
			m_show_debug = !m_show_debug;
 | 
			
		||||
		if (event.KeyInput.PressedDown && kp == getKeySetting("keymap_toggle_debug")) {
 | 
			
		||||
			if (!m_client || m_client->checkPrivilege("debug"))
 | 
			
		||||
				m_show_debug = !m_show_debug;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if (event.KeyInput.PressedDown &&
 | 
			
		||||
			(event.KeyInput.Key==KEY_RETURN ||
 | 
			
		||||
 
 | 
			
		||||
@@ -223,6 +223,11 @@ public:
 | 
			
		||||
		m_allowclose = value;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	void setDebugView(bool value)
 | 
			
		||||
	{
 | 
			
		||||
		m_show_debug = value;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	void lockSize(bool lock,v2u32 basescreensize=v2u32(0,0))
 | 
			
		||||
	{
 | 
			
		||||
		m_lock = lock;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user