Add puzzle box WidgetInfo
This commit is contained in:
@@ -62,6 +62,7 @@ public class WidgetID
|
||||
public static final int BARROWS_REWARD_GROUP_ID = 155;
|
||||
public static final int MOTHERLODE_MINE_GROUP_ID = 382;
|
||||
public static final int EXPERIENCE_DROP_GROUP_ID = 122;
|
||||
public static final int PUZZLE_BOX_GROUP_ID = 306;
|
||||
|
||||
static class WorldMap
|
||||
{
|
||||
@@ -278,4 +279,9 @@ public class WidgetID
|
||||
static final int DROP_6 = 20;
|
||||
static final int DROP_7 = 21;
|
||||
}
|
||||
|
||||
static class PuzzleBox
|
||||
{
|
||||
static final int VISIBLE_BOX = 4;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -165,7 +165,9 @@ public enum WidgetInfo
|
||||
QUEST_COMPLETED(WidgetID.QUEST_COMPLETED_GROUP_ID, 0),
|
||||
QUEST_COMPLETED_NAME_TEXT(WidgetID.QUEST_COMPLETED_GROUP_ID, WidgetID.QuestCompleted.NAME_TEXT),
|
||||
|
||||
MOTHERLODE_MINE(WidgetID.MOTHERLODE_MINE_GROUP_ID, 0);
|
||||
MOTHERLODE_MINE(WidgetID.MOTHERLODE_MINE_GROUP_ID, 0),
|
||||
|
||||
PUZZLE_BOX(WidgetID.PUZZLE_BOX_GROUP_ID, WidgetID.PuzzleBox.VISIBLE_BOX);
|
||||
|
||||
private final int groupId;
|
||||
private final int childId;
|
||||
|
||||
Reference in New Issue
Block a user