mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Fix disabling of player movement cheat detection in singleplayer
This commit is contained in:
parent
491287c0af
commit
5bd32eca0f
1 changed files with 6 additions and 1 deletions
|
@ -867,7 +867,12 @@ void PlayerSAO::step(float dtime, bool send_recommended)
|
||||||
|
|
||||||
m_time_from_last_punch += dtime;
|
m_time_from_last_punch += dtime;
|
||||||
|
|
||||||
if(!m_is_singleplayer)
|
if(m_is_singleplayer)
|
||||||
|
{
|
||||||
|
m_last_good_position = m_player->getPosition();
|
||||||
|
m_last_good_position_age = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
Check player movements
|
Check player movements
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue