From 8a6b1ef32ed29a7b7a5d9e8397756c8089d2b2af Mon Sep 17 00:00:00 2001 From: Akbar Yahya Date: Thu, 2 Feb 2023 11:18:07 +0800 Subject: [PATCH] reverse id, blame it on hiro xd (This fixes a strange bug that makes enemies sometimes appear in the shadows when attacking) --- proto/AiSyncInfo.proto | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/proto/AiSyncInfo.proto b/proto/AiSyncInfo.proto index 0319fcca..d56c8ef0 100644 --- a/proto/AiSyncInfo.proto +++ b/proto/AiSyncInfo.proto @@ -1,12 +1,8 @@ syntax = "proto3"; - option java_package = "emu.grasscutter.net.proto"; - - - message AiSyncInfo { uint32 entityId = 1; - bool has_path_to_target = 2; - bool is_self_killing = 10; -} + bool is_self_killing = 2; + bool has_path_to_target = 10; +} \ No newline at end of file