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

Commit

Permalink
Patch to fix potion stacks.
Browse files Browse the repository at this point in the history
  • Loading branch information
spikespaz committed Mar 4, 2017
1 parent 9e5b6ef commit 7cb492a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.3-1.8.9"
version = "v1.4.4-1.8.9"
group= "com.spikespaz.essentialadditions"
archivesBaseName = "essentialadditions"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class EssentialAdditions {
public static final String MODID = "essentialadditions";
static final String NAME = "Essential Additions";
static final String VERSION = "1.4.3";
static final String VERSION = "1.4.4";
private static final String CLIENTSIDE = "com.spikespaz.essentialadditions.proxy.ClientProxy";
private static final String SERVERSIDE = "com.spikespaz.essentialadditions.proxy.CommonProxy";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ private static void modifyStacks() {
Items.ender_pearl.setMaxStackSize(64);
Items.egg.setMaxStackSize(64);
Items.snowball.setMaxStackSize(64);
Items.potionitem.setMaxStackSize(16);
// Doors
Items.oak_door.setMaxStackSize(16);
Items.spruce_door.setMaxStackSize(16);
Expand Down

0 comments on commit 7cb492a

Please sign in to comment.