|
@@ -759,12 +759,31 @@ enum e_itemshop_restrictions {
|
|
|
enum e_item_drop_effect : uint16 {
|
|
|
DROPEFFECT_NONE = 0,
|
|
|
DROPEFFECT_CLIENT,
|
|
|
+#if PACKETVER < 20200304
|
|
|
DROPEFFECT_WHITE_PILLAR,
|
|
|
+#endif
|
|
|
DROPEFFECT_BLUE_PILLAR,
|
|
|
DROPEFFECT_YELLOW_PILLAR,
|
|
|
DROPEFFECT_PURPLE_PILLAR,
|
|
|
+#if PACKETVER < 20200304
|
|
|
+ DROPEFFECT_ORANGE_PILLAR,
|
|
|
+#else
|
|
|
+ DROPEFFECT_GREEN_PILLAR,
|
|
|
+#endif
|
|
|
+#if PACKETVER >= 20200304
|
|
|
+ DROPEFFECT_RED_PILLAR,
|
|
|
+#endif
|
|
|
+ DROPEFFECT_MAX,
|
|
|
+#if PACKETVER >= 20200304
|
|
|
+ // White was removed in 2020-03-04
|
|
|
+ DROPEFFECT_WHITE_PILLAR,
|
|
|
+ // Orange was replaced by green in 2020-03-04
|
|
|
DROPEFFECT_ORANGE_PILLAR,
|
|
|
- DROPEFFECT_MAX
|
|
|
+#else
|
|
|
+ // Not supported before 2020-03-04
|
|
|
+ DROPEFFECT_GREEN_PILLAR,
|
|
|
+ DROPEFFECT_RED_PILLAR,
|
|
|
+#endif
|
|
|
};
|
|
|
|
|
|
/// Enum for items with delayed consumption
|