This mod fixes a bug that made it possible to ping yourself, printing funny (albeit annoying) messages like Xan wants to attack: Xan.
This is particularly useful for mods that add large character models, as the character model gets in the way of otherwise meaningful pings.
Modders, please note that this method bypasses PingerController.GeneratePingInfo such that its second call to Util.CharacterRaycast is redirected to a method implemented by my own code. This means that the hooks On.RoR2.Util.CharacterRaycast and On.RoR2.Util.HandleCharacterPhysicsCastResults will not execute if they are called via GeneratePingInfo (but other code that uses those methods, such as certain attacks and targeting sequences, will work fine as if nothing has happened).
Basically, if your code does anything with the raycasting specifically when pinging, sorry, this is not compatible. I would like to avoid such an intrusive change, but the IL code is incredibly messy and hard to keep track of without it. I just wanted to mention this since it poses a compatibility issue.