ModularWarfare - Guns & more

ModularWarfare - Guns & more

923k Downloads

MaxStackSize and dropBulletCasing(false) doesn't work.

eslairdjv opened this issue · 4 comments

commented

Max Stack Size doesn't work. And dropBulletCasing(false) in guns folder doesn't work.
But dropBulletCasing(false) in mod_config.json worked.

commented

If you check the code you'll find that, for ammo item they set the MaxStackSize to 4.
And that overwrite your config.

commented

コードを確認すると、弾薬アイテムの MaxStackSize が 4 に設定されていることがわかります。これにより、構成 が上書きされます。

How to rewrite that code

commented

com.modularwarfare.common.guns.ItemAmmo
in the constructor public ItemAmmo(AmmoType type), you can see this.setMaxStackSize(4);
just delete it or rewrite it into this.setMaxStackSize(type.maxStackSize);
I don't know why the author doesn't fix it even now(beta 2.0). Maybe it's a feature or they just forget it?

commented

コンストラクターのcom.modularwarfare.common.guns.ItemAmmo は、 削除するか、書き直すだけでpublic ItemAmmo(AmmoType type)わかります 。作者がなぜ今でも修正しないのかわかりません(ベータ 2.0)。多分それは機能ですか、それとも彼らはそれを忘れていますか?this.setMaxStackSize(4);``this.setMaxStackSize(type.maxStackSize);

ありがとうございます。