mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-07 03:33:41 +08:00
Implement a new item drops system (#2112)
* 1 * Delete .gitattributes * implement * Update PacketDropHintNotify.java * Update PacketWorldChestOpenNotify.java * Update FileUtils.java * Update PacketDropHintNotify.java * Update WorldDataSystem.java --------- Co-authored-by: Magix <27646710+KingRainbow44@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
Unverified
parent
eda5e8c5e0
commit
f71b29c00a
@@ -0,0 +1,11 @@
|
||||
package emu.grasscutter.game.drop;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public class BaseDropData {
|
||||
private int minLevel;
|
||||
private String index;
|
||||
private int dropId;
|
||||
private int dropCount;
|
||||
}
|
||||
Reference in New Issue
Block a user