Fix extra skill charges being removed if you teleport

Close #404
This commit is contained in:
Melledy
2022-05-02 17:25:26 -07:00
parent 5af7b8d2e8
commit 90787c659b
4 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "AvatarSkillInfo.proto";
message AvatarSkillInfoNotify {
uint64 guid = 1;
map<uint32, AvatarSkillInfo> skill_map = 2;
}