mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-20 06:58:20 +00:00
Merge pull request #3295 from Jupeyy/pr_fix_dragger_physics
Fix dragger logic
This commit is contained in:
commit
9817e8a8ec
|
@ -80,10 +80,9 @@ void CDragger::Move()
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!m_Target)
|
if(!m_Target)
|
||||||
{
|
|
||||||
m_Target = Id != -1 ? TempEnts[Id] : 0;
|
m_Target = Id != -1 ? TempEnts[Id] : 0;
|
||||||
}
|
|
||||||
else
|
if(m_Target)
|
||||||
{
|
{
|
||||||
for(auto &SoloEnt : m_SoloEnts)
|
for(auto &SoloEnt : m_SoloEnts)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue