fix no melee attach and adjust skill particle amount

This commit is contained in:
logictc
2022-05-26 14:29:30 -04:00
committed by Melledy
parent b57cf83bbd
commit 6a9018e310
2 changed files with 7 additions and 31 deletions

View File

@@ -13,7 +13,7 @@ public class PacketEntityAiSyncNotify extends BasePacket {
EntityAiSyncNotify.Builder proto = EntityAiSyncNotify.newBuilder();
for (int monsterId : notify.getLocalAvatarAlertedMonsterListList()) {
proto.addInfoList(AiSyncInfo.newBuilder().setEntityId(monsterId));
proto.addInfoList(AiSyncInfo.newBuilder().setEntityId(monsterId).setHasPathToTarget(true));
}
this.setData(proto);