Skip to content
This repository has been archived by the owner on Apr 4, 2022. It is now read-only.

Commit

Permalink
Fixed proxy reference and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
spikespaz committed Feb 25, 2017
1 parent 39b41ff commit 9e5b6ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
}
apply plugin: 'net.minecraftforge.gradle.forge'

version = "v1.4.2-1.8.9"
version = "v1.4.3-1.8.9"
group= "com.spikespaz.essentialadditions"
archivesBaseName = "essentialadditions"

Expand All @@ -31,11 +31,11 @@ processResources {
// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'

// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}

// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
public class EssentialAdditions {
public static final String MODID = "essentialadditions";
static final String NAME = "Essential Additions";
static final String VERSION = "1.4.2";
static final String VERSION = "1.4.3";
private static final String CLIENTSIDE = "com.spikespaz.essentialadditions.proxy.ClientProxy";
private static final String SERVERSIDE = "com.spikespaz.essentialadditions.proxy.ServerProxy";
private static final String SERVERSIDE = "com.spikespaz.essentialadditions.proxy.CommonProxy";

@SidedProxy(clientSide=CLIENTSIDE, serverSide = SERVERSIDE)
public static CommonProxy proxy;
Expand Down

0 comments on commit 9e5b6ef

Please sign in to comment.