This commit is contained in:
NSDeathman 2026-06-02 10:40:39 +01:00 committed by GitHub
commit 00db1a6c9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -445,7 +445,13 @@ void Arrow::tick()
float s = 1 / 4.0f;
level->addParticle(eParticleType_bubble, x - xd * s, y - yd * s, z - zd * s, xd, yd, zd);
}
inertia = 0.80f;
inertia *= 0.1f;
gravity *= 2.0f;
}
if (isInLava())
{
setOnFire(100);
}
xd *= inertia;