File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
src/main/java/com/ferreusveritas/dynamictrees Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 5353* </p>
5454*
5555*/
56- @ Mod (modid = ModConstants .MODID , version =ModConstants .VERSION ,dependencies ="after:computercraft;after:quark" )
56+ @ Mod (modid = ModConstants .MODID , version =ModConstants .VERSION ,dependencies =ModConstants . DEPENDENCIES )
5757public class DynamicTrees {
5858
5959 @ Mod .Instance (ModConstants .MODID )
Original file line number Diff line number Diff line change @@ -6,4 +6,29 @@ public class ModConstants {
66 public static final String VERSION = "@VERSION@" ;
77 //public static final String VERSION = "1.12.2-0.7.7e";
88
9+ public static final String AFTER = "after:" ;
10+ public static final String BEFORE = "before:" ;
11+ public static final String NEXT = ";" ;
12+
13+ //Other Mods
14+ public static final String COMPUTERCRAFT = "computercraft" ;
15+ public static final String QUARK = "quark" ;
16+ public static final String DYNAMICTREESBOP = "dynamictreesbop" ;
17+ public static final String DYNAMICTREESTC = "dynamictreestc" ;
18+
19+ //Other Mods
20+ public static final String DYNAMICTREESBOP_VER = "@[1.1d,)" ;
21+ public static final String DYNAMICTREESTC_VER = "@[0.1b,)" ;
22+
23+ public static final String DEPENDENCIES
24+ = AFTER + COMPUTERCRAFT
25+ + NEXT
26+ + AFTER + QUARK
27+ + NEXT
28+ + BEFORE + DYNAMICTREESBOP + DYNAMICTREESBOP_VER
29+ + NEXT
30+ + BEFORE + DYNAMICTREESTC + DYNAMICTREESTC_VER
31+ ;
32+
33+
934}
You can’t perform that action at this time.
0 commit comments