19/06/06 21:53:45.28 TmER98ZO00606.net
>>650 custom-weaponmusic.jsの
var weapon = BattlerChecker.getRealBattleWeapon(attackInfo.unitSrc);
if (typeof weapon.custom.musicId === 'undefined') {
return data;
}
の部分を
var weapon = BattlerChecker.getRealBattleWeapon(attackInfo.unitSrc);
var unitSrc = attackInfo.unitSrc;
var unitDest = attackInfo.unitDest;
var handleUnitSrc = unitSrc.getBattleMusicHandle();
var handleUnitDest = unitDest.getBattleMusicHandle();
if (typeof weapon.custom.musicId === 'undefined') {
if (!handleUnitSrc.isNullHandle() && !handleUnitDest.isNullHandle() && unitSrc.getUnitType() === UnitType.ENEMY) {
data.handle = handleUnitSrc;
data.isNew = false;
}
else if (!handleUnitSrc.isNullHandle() && !handleUnitDest.isNullHandle() && unitDest.getUnitType() === UnitType.ENEMY) {
data.handle = handleUnitDest;
data.isNew = false;
}
return data;
}
にして個別戦闘BGM敵優先.jsを外せばいけると思う