Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.61 KB | None | 0 0
  1. == MCP v3.1 ==
  2. > Recompiling client...
  3. javac.exe -g -verbose -classpath "jars/bin/minecraft.jar;jars/bin/jinput.jar;jar
  4. s/bin/lwjgl.jar;jars/bin/lwjgl_util.jar" -sourcepath src/minecraft -d bin/minecr
  5. aft src/minecraft\net\minecraft\client\*.java src/minecraft\net\minecraft\isom\*
  6. .java src/minecraft\net\minecraft\src\*.java conf/patches/*.java failed.
  7. Return code : 1
  8.  
  9. == ERRORS FOUND ==
  10.  
  11. src\minecraft\net\minecraft\src\ItemCorundumAxe.java:8: cannot find symbol
  12. symbol : constructor ItemTool(int,int,net.minecraft.src.EnumToolMod,net.minecra
  13. ft.src.Block[])
  14. location: class net.minecraft.src.ItemTool
  15. super(i, 3, enumtoolmod, blocksEffectiveAgainst);
  16. ^
  17.  
  18. src\minecraft\net\minecraft\src\ItemCorundumPick.java:7: cannot find symbol
  19. symbol : constructor ItemTool(int,int,net.minecraft.src.EnumToolMod,net.minecra
  20. ft.src.Block[])
  21. location: class net.minecraft.src.ItemTool
  22. super(i, 2, enumtoolmod, blocksEffectiveAgainst);
  23. ^
  24.  
  25. src\minecraft\net\minecraft\src\ItemCorundumShovel.java:9: cannot find symbol
  26. symbol : constructor ItemTool(int,int,net.minecraft.src.EnumToolMod,net.minecra
  27. ft.src.Block[])
  28. location: class net.minecraft.src.ItemTool
  29. super(i, 1, enumtoolmod, blocksEffectiveAgainst);
  30. ^
  31.  
  32. src\minecraft\net\minecraft\src\mod_corundum.java:4: cannot find symbol
  33. symbol : class BlockNew
  34. location: class net.minecraft.src.mod_corundum
  35. public static Block corundumore = new BlockNew(100, 0).setHardness(4.0F).setResi
  36. stance(5.0F).setBlockName("corundumore");
  37. ^
  38.  
  39. src\minecraft\net\minecraft\src\mod_corundum.java:34: cannot find symbol
  40. symbol : constructor ItemSword(int,net.minecraft.src.EnumToolMod)
  41. location: class net.minecraft.src.ItemSword
  42. corundumsword = new ItemCorundumSword(new ItemSword(2002, EnumToolMod.CORUNDUM))
  43. .setIconCoord(0, 0).setItemName("corundumsword");
  44. ^
  45.  
  46. src\minecraft\net\minecraft\src\mod_corundum.java:34: internal error; cannot ins
  47. tantiate net.minecraft.src.ItemCorundumSword.<init> at net.minecraft.src.ItemCor
  48. undumSword to ()
  49. corundumsword = new ItemCorundumSword(new ItemSword(2002, EnumToolMod.CORUNDUM))
  50. .setIconCoord(0, 0).setItemName("corundumsword");
  51. ^
  52.  
  53. src\minecraft\net\minecraft\src\mod_corundum.java:37: cannot find symbol
  54. symbol : constructor ItemPickaxe(int,net.minecraft.src.EnumToolMod)
  55. location: class net.minecraft.src.ItemPickaxe
  56. corundumpick = new ItemCorundumPick(new ItemPickaxe(2003, EnumToolMod.CORUNDUM))
  57. .setIconCoord(0, 0).setItemName("corundumpick");
  58. ^
  59.  
  60. src\minecraft\net\minecraft\src\mod_corundum.java:37: internal error; cannot ins
  61. tantiate net.minecraft.src.ItemCorundumPick.<init> at net.minecraft.src.ItemCoru
  62. ndumPick to ()
  63. corundumpick = new ItemCorundumPick(new ItemPickaxe(2003, EnumToolMod.CORUNDUM))
  64. .setIconCoord(0, 0).setItemName("corundumpick");
  65. ^
  66.  
  67. src\minecraft\net\minecraft\src\mod_corundum.java:40: cannot find symbol
  68. symbol : constructor ItemAxe(int,net.minecraft.src.EnumToolMod)
  69. location: class net.minecraft.src.ItemAxe
  70. corundumaxe = new ItemCorundumAxe(new ItemAxe(2004, EnumToolMod.CORUNDUM)).setIc
  71. onCoord(0, 0).setItemName("corundumaxe");
  72. ^
  73.  
  74. src\minecraft\net\minecraft\src\mod_corundum.java:40: internal error; cannot ins
  75. tantiate net.minecraft.src.ItemCorundumAxe.<init> at net.minecraft.src.ItemCorun
  76. dumAxe to ()
  77. corundumaxe = new ItemCorundumAxe(new ItemAxe(2004, EnumToolMod.CORUNDUM)).setIc
  78. onCoord(0, 0).setItemName("corundumaxe");
  79. ^
  80.  
  81. src\minecraft\net\minecraft\src\mod_corundum.java:43: cannot find symbol
  82. symbol : constructor ItemSpade(int,net.minecraft.src.EnumToolMod)
  83. location: class net.minecraft.src.ItemSpade
  84. corundumshovel = new ItemCorundumShovel(new ItemSpade(2005, EnumToolMod.CORUNDUM
  85. )).setIconCoord(0, 0).setItemName("corundumshovel");
  86. ^
  87.  
  88. src\minecraft\net\minecraft\src\mod_corundum.java:43: internal error; cannot ins
  89. tantiate net.minecraft.src.ItemCorundumShovel.<init> at net.minecraft.src.ItemCo
  90. rundumShovel to ()
  91. corundumshovel = new ItemCorundumShovel(new ItemSpade(2005, EnumToolMod.CORUNDUM
  92. )).setIconCoord(0, 0).setItemName("corundumshovel");
  93. ^
  94.  
  95. src\minecraft\net\minecraft\src\mod_corundum.java:46: cannot find symbol
  96. symbol : constructor ItemHoe(int,net.minecraft.src.EnumToolMod)
  97. location: class net.minecraft.src.ItemHoe
  98. corundumhoe = new ItemCorundumHoe(new ItemHoe(2006, EnumToolMod.CORUNDUM)).setIc
  99. onCoord(0, 0).setItemName("corundumhoe");
  100. ^
  101.  
  102. src\minecraft\net\minecraft\src\mod_corundum.java:46: internal error; cannot ins
  103. tantiate net.minecraft.src.ItemCorundumHoe.<init> at net.minecraft.src.ItemCorun
  104. dumHoe to ()
  105. corundumhoe = new ItemCorundumHoe(new ItemHoe(2006, EnumToolMod.CORUNDUM)).setIc
  106. onCoord(0, 0).setItemName("corundumhoe");
  107. ^
  108.  
  109. 14 errors
  110. ==================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement