diff --git a/SpecialSource-1.5-SNAPSHOT-shaded.jar b/SpecialSource-1.5-SNAPSHOT-shaded.jar deleted file mode 100644 index db85a28..0000000 Binary files a/SpecialSource-1.5-SNAPSHOT-shaded.jar and /dev/null differ diff --git a/SpecialSource-License.txt b/SpecialSource-License.txt deleted file mode 100644 index f887127..0000000 --- a/SpecialSource-License.txt +++ /dev/null @@ -1,26 +0,0 @@ -Copyright (c) 2012, md_5. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, -this list of conditions and the following disclaimer in the documentation -and/or other materials provided with the distribution. - -The name of the author may not be used to endorse or promote products derived -from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. diff --git a/build.xml b/build.xml index b0ce14e..eb1c1b8 100644 --- a/build.xml +++ b/build.xml @@ -6,10 +6,10 @@ - + - - + + @@ -29,7 +29,7 @@ - + @@ -49,13 +49,27 @@ - - - - - - - + + + + + + + + + + + + + + + + + + + @@ -104,7 +118,7 @@ - + - + + + + + + + + + + + @@ -159,6 +183,10 @@ + + + + diff --git a/src/itemrender/ItemRenderMod.java b/src/itemrender/ItemRenderMod.java index c3b86b1..d5d862d 100644 --- a/src/itemrender/ItemRenderMod.java +++ b/src/itemrender/ItemRenderMod.java @@ -22,12 +22,12 @@ public class ItemRenderMod { public static final int DEFAULT_TEXTURE_SIZE = 128; public static final int GRID_TEXTURE_SIZE = 32; - @Mod.PreInit + @Mod.EventHandler public void preInit(FMLPreInitializationEvent e) { gl32_enabled = GLContext.getCapabilities().OpenGL32; } - @Mod.Init + @Mod.EventHandler public void init(FMLInitializationEvent e) { if(gl32_enabled) { TickRegistry.registerTickHandler(new RenderTickHandler(), Side.CLIENT); @@ -39,7 +39,7 @@ public void init(FMLInitializationEvent e) { } } - @Mod.PostInit + @Mod.EventHandler public void postInit(FMLPostInitializationEvent e) { } }