Commit 6a9018e3 authored by logictc's avatar logictc Committed by Melledy
Browse files

fix no melee attach and adjust skill particle amount

parent b57cf83b
...@@ -13,7 +13,7 @@ public class PacketEntityAiSyncNotify extends BasePacket { ...@@ -13,7 +13,7 @@ public class PacketEntityAiSyncNotify extends BasePacket {
EntityAiSyncNotify.Builder proto = EntityAiSyncNotify.newBuilder(); EntityAiSyncNotify.Builder proto = EntityAiSyncNotify.newBuilder();
for (int monsterId : notify.getLocalAvatarAlertedMonsterListList()) { for (int monsterId : notify.getLocalAvatarAlertedMonsterListList()) {
proto.addInfoList(AiSyncInfo.newBuilder().setEntityId(monsterId)); proto.addInfoList(AiSyncInfo.newBuilder().setEntityId(monsterId).setHasPathToTarget(true));
} }
this.setData(proto); this.setData(proto);
......
...@@ -201,13 +201,9 @@ ...@@ -201,13 +201,9 @@
"avatarId": 10000030, "avatarId": 10000030,
"name": "Zhongli", "name": "Zhongli",
"amountList": [ "amountList": [
{
"value": 0,
"chance": 50
},
{ {
"value": 1, "value": 1,
"chance": 50 "chance": 100
} }
] ]
}, },
...@@ -215,13 +211,9 @@ ...@@ -215,13 +211,9 @@
"avatarId": 10000031, "avatarId": 10000031,
"name": "Fischl", "name": "Fischl",
"amountList": [ "amountList": [
{
"value": 0,
"chance": 33
},
{ {
"value": 1, "value": 1,
"chance": 67 "chance": 100
} }
] ]
}, },
...@@ -293,13 +285,9 @@ ...@@ -293,13 +285,9 @@
"avatarId": 10000038, "avatarId": 10000038,
"name": "Albedo", "name": "Albedo",
"amountList": [ "amountList": [
{
"value": 0,
"chance": 33
},
{ {
"value": 1, "value": 1,
"chance": 67 "chance": 100
} }
] ]
}, },
...@@ -307,13 +295,9 @@ ...@@ -307,13 +295,9 @@
"avatarId": 10000039, "avatarId": 10000039,
"name": "Diona", "name": "Diona",
"amountList": [ "amountList": [
{
"value": 0,
"chance": 20
},
{ {
"value": 1, "value": 1,
"chance": 80 "chance": 100
} }
] ]
}, },
...@@ -455,13 +439,9 @@ ...@@ -455,13 +439,9 @@
"avatarId": 10000052, "avatarId": 10000052,
"name": "Raiden Shogun", "name": "Raiden Shogun",
"amountList": [ "amountList": [
{
"value": 0,
"chance": 50
},
{ {
"value": 1, "value": 1,
"chance": 50 "chance": 100
} }
] ]
}, },
...@@ -479,13 +459,9 @@ ...@@ -479,13 +459,9 @@
"avatarId": 10000054, "avatarId": 10000054,
"name": "Sangonomiya Kokomi", "name": "Sangonomiya Kokomi",
"amountList": [ "amountList": [
{
"value": 0,
"chance": 33
},
{ {
"value": 1, "value": 1,
"chance": 67 "chance": 100
} }
] ]
}, },
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment