BrainStone

Untitled

Dec 14th, 2016
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. Before:
  2.  
  3. dependencies {
  4. provided("com.brandon3055.draconicevolution:Draconic-Evolution:${minecraft_version}-${draconicEvolution_version}:deobf") {
  5. exclude module: "jei_${minecraft_version}"
  6. exclude module: "OpenComputers"
  7. }
  8. }
  9.  
  10.  
  11. After:
  12.  
  13. dependencies {
  14. // Until mappings are updated in DE (Then remove this and exclusion under DE)
  15. deobfProvided "com.brandon3055.brandonscore:BrandonsCore:1.10.2-2.1.1.+:universal"
  16. // Until mappings are updated in DE (Then remove this and exclusion under DE)
  17. deobfProvided "codechicken:CodeChickenLib:1.10.2-2.4.3.+:universal"
  18. // Mappings do not match!
  19. deobfProvided("com.brandon3055.draconicevolution:Draconic-Evolution:${minecraft_version}-${draconicEvolution_version}:universal") {
  20. // Until mappings are updated
  21. exclude module: "BrandonsCore"
  22. // Until mappings are updated
  23. exclude module: "CodeChickenLib"
  24. exclude module: "jei_${minecraft_version}"
  25. exclude module: "OpenComputers"
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment