From 7fe6c9658b6378a253d99b851217be87eac30431 Mon Sep 17 00:00:00 2001 From: zhaodice <63996691+zhaodice@users.noreply.github.com> Date: Wed, 1 Jun 2022 19:29:12 +0800 Subject: [PATCH] Fix deforestation protocol on 2.7 --- proto/HitTreeNotify.proto | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/proto/HitTreeNotify.proto b/proto/HitTreeNotify.proto index 69a02ef96..7d547eb1f 100644 --- a/proto/HitTreeNotify.proto +++ b/proto/HitTreeNotify.proto @@ -1,10 +1,9 @@ syntax = "proto3"; option java_package = "emu.grasscutter.net.proto"; - + import "Vector.proto"; message HitTreeNotify { - uint32 wood_type = 1; - uint32 unknown_data = 2; // if you know what it means, welcome to describe - Vector hit_postion = 3; + Vector hit_postion = 3; + uint32 wood_type = 1; }