Skip to content
This repository has been archived by the owner on May 26, 2018. It is now read-only.

Fixed MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED REROUTING TO FML! #553

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0010d3a
1.8 Conf update. Uses MCPData Snapshots now.
LexManos Sep 16, 2014
6efaa24
Inital 1.8 patch update. 'It compiles!'
LexManos Sep 20, 2014
2c03f5f
Preliminary network protocol re-work. vanilla clients can now connect…
LexManos Sep 23, 2014
387842b
Move vanilla trades to inner class to prevent initilizer order issues.
LexManos Sep 23, 2014
ee3e423
Move FML to net.minecraft.fml package.
LexManos Sep 23, 2014
25fb253
Update Config Gui stuff for 1.8
bspkrs Sep 30, 2014
ba2db94
Merge pull request #527 from bspkrs/1.8
LexManos Sep 30, 2014
db39164
Restructure block and item mapping data in world save and network to …
LexManos Oct 1, 2014
ed866ac
Add joptsimple as a server required library. Closes #531
LexManos Oct 1, 2014
3e78dc9
added mappings to default build.gradle
AbrarSyed Oct 3, 2014
d9fff6d
Merge pull request #533 from AbrarSyed/patch-2
LexManos Oct 3, 2014
bc44e4a
Renamed TileEntityRendererChestHelper -> TileEntityItemStackRenderer
LexManos Oct 4, 2014
5810a32
Take control over Item.BLOCK_TO_ITEM map and register Block's to this…
LexManos Oct 4, 2014
c30e86b
General class name cleanup, spelling mistakes and FF decompile issues.
LexManos Oct 4, 2014
056884b
Update TerminalTransformer for new FML package. Closes #535
LexManos Oct 6, 2014
62150d5
Automatically register BlockStates when block is initally registered,…
LexManos Oct 9, 2014
b11f57e
Removed unneeded rebuild, was toying with where to put it.
LexManos Oct 9, 2014
543471e
Add the ability to register custom variant names in ModelBakery.
LexManos Oct 14, 2014
bba5e9e
changed pass-thru method name to fix MCP name conflict
bspkrs Oct 15, 2014
9a625fc
Merge pull request #545 from bspkrs/1.8
LexManos Oct 15, 2014
2c936f9
Re-enabled Entity-Render registration
Parker8283 Oct 20, 2014
60da2c2
Merge pull request #547 from Parker8283/1.8
LexManos Oct 20, 2014
e6c957f
Merge branch 'master' of http://www.github.com/MattsMc/FML
Matts Oct 31, 2014
7784287
Fixed MOD HAS DIRECT REFERENCE System.exit() THIS IS NOT ALLOWED RERO…
Matts Oct 31, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 5 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@ repositories {
}

minecraft {
version = '1.7.10'
mcpVersion = '9.05'
version = '1.8'
mcpVersion = '9.10'
mappings = 'snapshot_nodoc_20140930'
fmlDir = projectDir.getAbsolutePath();
mainClass = 'cpw.mods.fml.relauncher.ServerLaunchWrapper'
tweakClass = 'cpw.mods.fml.common.launcher.FMLTweaker'
mainClass = 'net.minecraftforge.fml.relauncher.ServerLaunchWrapper'
tweakClass = 'net.minecraftforge.fml.common.launcher.FMLTweaker'
installerVersion = "1.4"
}

Expand Down
Loading