PierceBugFix
Fixes piercing so that piercing shots hit the advertised number of enemies.
Date uploaded | 3 months ago |
Version | 1.2.0 |
Download link | tru0067-PierceBugFix-1.2.0.zip |
Downloads | 273 |
Dependency string | tru0067-PierceBugFix-1.2.0 |
This mod requires the following mods to function
BepInEx-BepInExPack_GTFO
BepInEx pack for GTFO. Preconfigured and includes Unity Base DLLs.
Preferred version: 3.2.1README
PierceBugFix
Fixes piercing so that piercing shots hit the advertised number of enemies.
Currently there is a hardcoded limit of 5 hits before piercing shots stop checking for additional hits. However, a single enemy can use up multiple of these hits, drastically reducing the number of enemies that are actually hit, particularly for wide enemies.
This mod removes this hardcoded limit. It does so by directly modifying the assembly instructions of
the BulletWeapon.Fire
and Shotgun.Fire
methods. It changes the inc
instruction which
increments the number counting up to 5 into a nop
or do nothing instruction. This causes the
number to never reach 5, completely removing the hardcoded limit. Shots still naturally terminate
when hitting something non-damageable or if their actual piercing limit is reached.
It additionally changes the behaviour of shotguns piercing to no longer re-evaluate the spread on every pierce. In the base game every pierce causes the spread of the shotgun shot to continually increase, this mod fixes this so that each pellet simply continues on its original trajectory.
You can find the dev feedback thread on the GTFO modding discord here: https://discord.com/channels/782438773690597389/1263680596643680338
Known Issues
None! Please let me know if you encounter any!
Acknowledgements
Kasuromi for SniperMeleeFix, which much of this fix is based on. randomuserhi for suggesting the use of no-ops and for implementing the fix for shotguns! Dinorush for initial discussion and for implementing the fix for shotgun spread!
CHANGELOG
v1.0.0
Initial release!
v1.1.0
Extended fix to shotguns, credit to randomuserhi!
v1.2.0
Extended fix to shotgun spread, credit to Dinorush!
v1.2.1
Added a fix for possible infinite loop, credit to Dinorush!