Skip to content

Commit

Permalink
Fixed/Added Invisibilty Potions Tier 3 not appearing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonius7 committed Oct 17, 2018
1 parent d93a76f commit 639815f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
1.3.3.2 18/10/2018
Fixed/Added Invisibilty Potions Tier 3 not appearing

1.3.3.1 18/10/2018
Fixed Buildcraft plugin integration to use Combustion Potions as fuel
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ forge_version=10.13.4.1558
core_version=2.2.2

#The version to be used in the code and for naming the .jar
mod_version=1.3.3.1
mod_version=1.3.3.2

#group means the package that all the classes in this mod are contained in. The root of this source. Example: redgear.geocraft
mod_group=redgear.brewcraft
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ public void Init(ModUtils mod) {
fluidHarmIII = potionRegistry.addPotion(null, "HarmIII", Potion.harm, 1, 2);
fluidHealIII = potionRegistry.addPotion(null, "HealIII", Potion.heal, 1, 2);
fluidVisionVeryLong = potionRegistry.addPotion(null, "VisionVeryLong", Potion.nightVision, 960, 0);
fluidInvisibleVeryLong = potionRegistry.addPotion(null, "InvisibleVeryLong", Potion.invisibility, 960, 0);
fluidWeaknessVeryLong = potionRegistry.addPotion(null, "WeaknessVeryLong", Potion.weakness, 480, 0, true);
fluidSlownessVeryLong = potionRegistry.addPotion(null, "SlownessVeryLong", Potion.moveSlowdown, 480, 0, true);
fluidWaterBreatheVeryLong = potionRegistry.addPotion(null, "WaterBreatheVeryLong", Potion.waterBreathing, 960, 0);
Expand Down Expand Up @@ -235,6 +236,7 @@ public void Init(ModUtils mod) {
potionRegistry.addPotion(fluidVisionVeryLong, vials, "VisionVeryLong", Potion.nightVision, 480, 0);
potionRegistry.addPotion(fluidInvisible, vials, "Invisible", Potion.invisibility, 45, 0);
potionRegistry.addPotion(fluidInvisibleLong, vials, "InvisibleLong", Potion.invisibility, 90, 0);
potionRegistry.addPotion(fluidInvisibleVeryLong, vials, "InvisibleVeryLong", Potion.invisibility, 180, 0);
potionRegistry.addPotion(fluidRegen, vials, "Regen", Potion.regeneration, 15, 0);
potionRegistry.addPotion(fluidRegenII, vials, "RegenII", Potion.regeneration, 7, 1);
potionRegistry.addPotion(fluidRegenLong, vials, "RegenLong", Potion.regeneration, 45, 0);
Expand Down Expand Up @@ -366,6 +368,7 @@ public void Init(ModUtils mod) {
potionRegistry.addPotion(fluidVisionVeryLong, big, "VisionVeryLong", Potion.nightVision, 1440, 0);
potionRegistry.addPotion(fluidInvisible, big, "Invisible", Potion.invisibility, 360, 0);
potionRegistry.addPotion(fluidInvisibleLong, big, "InvisibleLong", Potion.invisibility, 720, 0);
potionRegistry.addPotion(fluidInvisibleVeryLong, big, "InvisibleVeryLong", Potion.invisibility, 1440, 0);
potionRegistry.addPotion(fluidRegen, big, "Regen", Potion.regeneration, 90, 0);
potionRegistry.addPotion(fluidRegenII, big, "RegenII", Potion.regeneration, 45, 1);
potionRegistry.addPotion(fluidRegenLong, big, "RegenLong", Potion.regeneration, 180, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void addRecipe(FluidStack input, FluidStack output, SimpleItem item, int
else if (input.amount <= 0)
message.append("Input fluid amount is less than 1. ");
if (output == null)
message.append("Output Fluid is null. ");
message.append("Output Fluid is null. " + "Inputs: " + input.getLocalizedName() + ", " + item.getName());
else if (output.amount <= 0)
message.append("Output fluid amount is less than 1. ");

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"name": "Brewcraft",
"description": "Industrial brewing and fluid potions!",
"version": "${version}",
"credits": "Created by Team Red Gear",
"credits": "Created by Team Red Gear; Bugfixes by Jonius7",
"logoFile": "",
"mcversion": "${minecraft_version}",
"url": "http://curse.com/project/69805",
"updateUrl": "",
"authors": [ "Enosphorous", "LordBlackHole"],
"authorList": [ "Enosphorous", "LordBlackHole"],
"parent":"",
"screenshots": [],
"dependencies": ["redgear_core"]
Expand Down

0 comments on commit 639815f

Please sign in to comment.