Skip to content

Commit 048780b

Browse files
committed
version bump to 4.3.14
1 parent 936601c commit 048780b

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.forge/update.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"homepage": "https://www.curseforge.com/minecraft/mc-mods/electroblobs-wizardry",
33
"promos": {
4-
"1.12.2-latest": "4.3.13",
5-
"1.12.2-recommended": "4.3.13"
4+
"1.12.2-latest": "4.3.14",
5+
"1.12.2-recommended": "4.3.14"
66
}
77
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ apply plugin: org.ajoberstar.grgit.gradle.GrgitPlugin
3838
apply plugin: 'wtf.gofancy.fancygradle'
3939

4040

41-
version = "4.3.13"
41+
version = "4.3.14"
4242
group= "electroblob.wizardry"// http://maven.apache.org/guides/mini/guide-naming-conventions.html
4343
archivesBaseName = "ElectroblobsWizardry"
4444

src/main/java/electroblob/wizardry/Wizardry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class Wizardry {
8282
* 1.x.x represents Minecraft 1.7.x versions, 2.x.x represents Minecraft 1.10.x versions, 3.x.x represents Minecraft
8383
* 1.11.x versions, and so on.
8484
*/
85-
public static final String VERSION = "4.3.13";
85+
public static final String VERSION = "4.3.14";
8686

8787
/**
8888
* Json file used by Forge's built-in <a href="https://mcforge.readthedocs.io/en/1.12.x/gettingstarted/autoupdate/">update checker</a>.

src/main/java/electroblob/wizardry/spell/Telekinesis.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ protected boolean onEntityHit(World world, Entity target, Vec3d hit, EntityLivin
3636
target.motionZ = (origin.z - target.posZ) / 6;
3737
return true;
3838

39-
} else if (target instanceof EntityPlayer && (Wizardry.settings.telekineticDisarmament && !ItemArtefact.isArtefactActive((EntityPlayer) target, WizardryItems.amulet_anchoring)) {
39+
} else if (target instanceof EntityPlayer && (Wizardry.settings.telekineticDisarmament && !ItemArtefact.isArtefactActive((EntityPlayer) target, WizardryItems.amulet_anchoring))) {
40+
41+
EntityPlayer player = (EntityPlayer) target;
4042

41-
EntityPlayer player = (EntityPlayer)target;
42-
4343
// IDEA: Disarm the offhand if the mainhand is empty or otherwise harmless?
4444

45-
if(!player.getHeldItemMainhand().isEmpty()){
45+
if (!player.getHeldItemMainhand().isEmpty()) {
4646

47-
if(!world.isRemote){
47+
if (!world.isRemote) {
4848
EntityItem item = player.entityDropItem(player.getHeldItemMainhand(), 0);
4949
// Makes the item move towards the caster
5050
item.motionX = (origin.x - player.posX) / 20;
5151
item.motionZ = (origin.z - player.posZ) / 20;
5252
}
5353

5454
player.setHeldItem(EnumHand.MAIN_HAND, ItemStack.EMPTY);
55-
55+
5656
return true;
5757
}
5858
}

src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"modid" : "ebwizardry",
44
"name" : "Electroblob's Wizardry",
5-
"version" : "4.3.13",
5+
"version" : "4.3.14",
66
"mcversion" : "1.12.2",
77
"url" : "https://minecraft.curseforge.com/projects/electroblobs-wizardry",
88
"credits" : "\nDesigned, coded and textured by Electroblob.\nDiscord Moderators: FavouriteDragon, WinDanesz\nCode contributed by: Corail31, 12foo, Shadows-of-Fire, Tora-B, Avatair, Aeronica, UltraHex, Azim-Palmer, raoulvdberge, rafasoares, xinyuan-liu, SettingDust, Aralu115, WinDanesz, ZettaSword.\nTranslators: Alsentar (Spanish), MadWrist (Mexican Spanish), VilagVil, kellixon, bigenergy, MugGod2 & DrHesperus (Russian), Hahdrim & Crowller (French), lorrampi (Brazilian Portuguese), ZHENGLOC, dragon-evol, Hokorizero, TUsama & Determancer (Chinese - Simplified), shejery, rewi_wire, 방통 & red1854th (Korean), Trozuu & Olej (Polish), BirdyDragon & Lemopav (German), chesterccj305 (Chinese - Traditional), Bombadil (Hungarian).\nSound Effects: OhhWowProductions, fredzed, deleted_user_3277771, DiscoveryME, OGSoundFX, leosalom, juskiddink",

0 commit comments

Comments
 (0)