**they fixed this in U230.1,you dont need this mod any more**
**推盾BUG在U230.1中已被修复,你不再需要这个MOD了**
the update 230 changed raycastweaponbase,when you shoot your weapon try to knock back a shield,it will call function RaycastWeaponBase:chk_shield_knock
```
if char_dmg_ext.is_immune_to_shield_knockback or char_dmg_ext:is_immune_to_shield_knockback() then
return false
end
```
the reason why it not working is that char_dmg_ext.is_immune_to_shield_knockback is true,so it return false
~~`if not char_dmg_ext.is_immune_to_shield_knockback or char_dmg_ext:is_immune_to_shield_knockback()`~~
~~my solutions just simply add not to it,and it fixed.~~
someone tells me its better write like this, so i update it
```
if char_dmg_ext.is_immune_to_shield_knockback then
if char_dmg_ext:is_immune_to_shield_knockback() then
return false
end
end
```
Thumbnail by Nyx Zelzone Leo, i love you(
IF YOU CRASHED,DO NOT REPORT TO ME, I CANT FIXED IT(well,most likely,im not a code worker)
Dependencies
-
Instructions
**Make sure to first have SuperBLT installed. Click the link in the dependency list.**
Optional video tutorial for installing SuperBLT, BeardLib, and mod_overrides mods: https://youtu.be/rin_sjSJIkg
1. After downloading the mod, use a program such as [7zip](https://www.7-zip.org/download.html) or [WinRAR](https://www.rarlab.com/download.htm) to extract the main folder of the mod.
2. Drop that folder into the `mods` folder which is supposed to be in the game's installation folder (don't know where that is? click [here](https://wiki.modworkshop.net/books/payday-2/page/finding-payday-2s-install-folder))
Comments