
PUBLIC SERVICE ANNOUNCEMENT
#2489 posted by
Kinn on 2018/04/19 21:50:27
(from discord chat, I've chopped it down to just give the salient points)
Kinn - Today at 10:19 AM
I've had the "grenades occasionally clip straight through shamblers" bug plenty of times in vanilla quake. I'd totally forgotten it was a thing. Is it still a thing in QS etc?
...
c0burn - Today at 8:18 PM
entities are re-used
when an entity is removed, not all fields are cleared
the shambler code sets self.owner = lightningbolt
...
[editors note: player then fires a rocket/grenade, spawning a new entity just after the lightning ent has been removed]
c0burn - Today at 8:21 PM
the shamblers .owner field is set to your rocket
so it passes straight through
...
c0burn - Today at 8:21 PM
you can just set self.owner = world to fix it
when the bolt is removed
or not set self.owner
really it should be bolt.owner = shambler
...
Kinn - Today at 8:27 PM
holky fuck