mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-20 19:40:43 +08:00
3b29ba032e
* [ScriptLib] Query player when not get entity from scene * Fix NPE when doing quests * Add QUEST_CONTENT_SKILL trigger Q353 need it * Add some missing fields that contain in scene scripts * Add a lua table serializer implement with jackson This do not replace the original one,it is useful when debug * Fix point_array type error * feat: fix space
12 lines
173 B
Java
12 lines
173 B
Java
package emu.grasscutter.scripts.data;
|
|
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
@ToString
|
|
@Setter
|
|
public class Explore {
|
|
public String name;
|
|
public int exp;
|
|
}
|