muffin v6.15

This commit is contained in:
alydev 2025-10-09 08:41:52 +10:00
parent cb878047bb
commit 29d735e936
16 changed files with 116 additions and 110 deletions

View file

@ -50,8 +50,8 @@ internal sealed class Mount128Module : ICombatModule
public bool CanAttack(IBattleNpc target)
{
uint dataId = target.DataId;
if (dataId - 7504 <= 1 || dataId == 14107)
uint baseId = target.BaseId;
if (baseId - 7504 <= 1 || baseId == 14107)
{
return true;
}