Skip to content

Commit

Permalink
Version 1.1.3
Browse files Browse the repository at this point in the history
Nerfed Valkyrie's attack damage
Fixed server crash upon client join
  • Loading branch information
Shnupbups committed Jul 5, 2018
1 parent d45e46f commit c8fc579
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.


version = "1.1.2"
version = "1.1.3"
group = "shnupbups.tinkersaether" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "tinkersaether"

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/shnupbups/tinkersaether/TinkersAether.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
@Mod(modid = TinkersAether.modid, name = TinkersAether.name, version = TinkersAether.version, acceptedMinecraftVersions = "[1.12.2]", dependencies = "required-after:mantle;required-after:tconstruct;required-after:aether_legacy;")
public class TinkersAether {
public static final String modid = "tinkersaether";
public static final String name = "MoreTiC";
public static final String version = "1.1.2";
public static final String name = "Tinkers Aether";
public static final String version = "1.1.3";

@Mod.Instance(modid)
public static TinkersAether instance;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public void preInit() {

if(TAConfig.valkyrie) {
TinkerRegistry.addMaterialStats(valkyrie,
new HeadMaterialStats(1000, 8.0f, 7.00f, COBALT),
new HeadMaterialStats(1000, 8.0f, 6.50f, COBALT),
new HandleMaterialStats(1.0f, 80),
new ExtraMaterialStats(70),
TinkersAether.plzNo);
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/shnupbups/tinkersaether/traits/Reach.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import net.minecraftforge.event.entity.living.LivingEvent;
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import shnupbups.tinkersaether.TinkersAether;
import shnupbups.tinkersaether.network.MessageExtendedAttack;
import slimeknights.tconstruct.library.traits.AbstractTrait;
Expand All @@ -30,6 +32,7 @@ public Reach() {

//Made a mistake in previous versions... this should fix it!
@SubscribeEvent
@SideOnly(Side.CLIENT)
public void onPlayerJoin(EntityJoinWorldEvent event) {
if ((event.getEntity() instanceof EntityPlayer)) {
EntityPlayer player = (EntityPlayer) event.getEntity();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "tinkersaether",
"name": "Tinker's Aether",
"description": "Adds Aether materials and stuff to Tinker's Construct.",
"version": "1.1.2",
"version": "1.1.3",
"mcversion": "${mcversion}",
"url": "",
"updateUrl": "",
Expand Down

0 comments on commit c8fc579

Please sign in to comment.