Skip to content

Commit c8fc579

Browse files
committed
Version 1.1.3
Nerfed Valkyrie's attack damage Fixed server crash upon client join
1 parent d45e46f commit c8fc579

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
1111
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
1212

1313

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

src/main/java/shnupbups/tinkersaether/TinkersAether.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
@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;")
3131
public class TinkersAether {
3232
public static final String modid = "tinkersaether";
33-
public static final String name = "MoreTiC";
34-
public static final String version = "1.1.2";
33+
public static final String name = "Tinkers Aether";
34+
public static final String version = "1.1.3";
3535

3636
@Mod.Instance(modid)
3737
public static TinkersAether instance;

src/main/java/shnupbups/tinkersaether/modules/ModuleBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public void preInit() {
137137

138138
if(TAConfig.valkyrie) {
139139
TinkerRegistry.addMaterialStats(valkyrie,
140-
new HeadMaterialStats(1000, 8.0f, 7.00f, COBALT),
140+
new HeadMaterialStats(1000, 8.0f, 6.50f, COBALT),
141141
new HandleMaterialStats(1.0f, 80),
142142
new ExtraMaterialStats(70),
143143
TinkersAether.plzNo);

src/main/java/shnupbups/tinkersaether/traits/Reach.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
import net.minecraftforge.event.entity.living.LivingEvent;
1212
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
1313
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
14+
import net.minecraftforge.fml.relauncher.Side;
15+
import net.minecraftforge.fml.relauncher.SideOnly;
1416
import shnupbups.tinkersaether.TinkersAether;
1517
import shnupbups.tinkersaether.network.MessageExtendedAttack;
1618
import slimeknights.tconstruct.library.traits.AbstractTrait;
@@ -30,6 +32,7 @@ public Reach() {
3032

3133
//Made a mistake in previous versions... this should fix it!
3234
@SubscribeEvent
35+
@SideOnly(Side.CLIENT)
3336
public void onPlayerJoin(EntityJoinWorldEvent event) {
3437
if ((event.getEntity() instanceof EntityPlayer)) {
3538
EntityPlayer player = (EntityPlayer) event.getEntity();

src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"modid": "tinkersaether",
44
"name": "Tinker's Aether",
55
"description": "Adds Aether materials and stuff to Tinker's Construct.",
6-
"version": "1.1.2",
6+
"version": "1.1.3",
77
"mcversion": "${mcversion}",
88
"url": "",
99
"updateUrl": "",

0 commit comments

Comments
 (0)