Hello, good afternoon. Reading the l2jmobius interlude code, I was reviewing the NpcTemplate code, and in one section I found this typo.
Part of the code has a typo.
_soulShot = set.getInt("soulShot", 0);
_spiritShot = set.getInt("spiritShot", 0);
_soulShotChance = set.getInt("shotShotChance", 0); // <--- Here I could see an error that says shotshot
_spiritShotChance = set.getInt("spiritShotChance", 0);
I'm going to correct this typo and check what effects it has on NPCs that use soulshots.