edited to allow fly

This commit is contained in:
sumoomus 2020-06-22 16:37:31 -04:00 committed by GitHub
parent 5e03f64baf
commit dee53a33ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -194,7 +194,8 @@ void LocalPlayer::move(f32 dtime, Environment *env, f32 pos_max_d,
PlayerSettings &player_settings = getPlayerSettings();
// Skip collision detection if noclip mode is used
bool fly_allowed = m_client->checkLocalPrivilege("fly");
//bool fly_allowed = m_client->checkLocalPrivilege("fly");
bool fly_allowed = true; //toggled using default keybind
bool noclip = m_client->checkLocalPrivilege("noclip") && player_settings.noclip;
bool free_move = player_settings.free_move && fly_allowed;
@ -488,7 +489,8 @@ void LocalPlayer::applyControl(float dtime, Environment *env)
v3f speedH = v3f(0,0,0); // Horizontal (X, Z)
v3f speedV = v3f(0,0,0); // Vertical (Y)
bool fly_allowed = m_client->checkLocalPrivilege("fly");
//bool fly_allowed = m_client->checkLocalPrivilege("fly");
bool fly_allowed = true; //toggled using default keybind
bool fast_allowed = m_client->checkLocalPrivilege("fast");
bool free_move = fly_allowed && player_settings.free_move;
@ -800,7 +802,8 @@ void LocalPlayer::old_move(f32 dtime, Environment *env, f32 pos_max_d,
PlayerSettings &player_settings = getPlayerSettings();
// Skip collision detection if noclip mode is used
bool fly_allowed = m_client->checkLocalPrivilege("fly");
//bool fly_allowed = m_client->checkLocalPrivilege("fly");
bool fly_allowed = true; //toggled using default keybind
bool noclip = m_client->checkLocalPrivilege("noclip") && player_settings.noclip;
bool free_move = noclip && fly_allowed && player_settings.free_move;
if (free_move) {