Skip to content

Commit

Permalink
> v1.2.0c
Browse files Browse the repository at this point in the history
Additions:
none

Deletions:
none

Other:
- fix KillAura

Notes:
- Time taken: ~0.2 hours

https://discord.gg/2WsVCQDpwy
  • Loading branch information
TudbuT committed Mar 30, 2022
1 parent 020ad03 commit fb7f573
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/tudbut/mod/client/ttc/TTC.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class TTC {
// FML stuff and version
public static final String MODID = "ttc";
public static final String NAME = "TTC Client";
public static final String VERSION = "v1.2.0b";
public static final String VERSION = "v1.2.0c";
// TODO: PLEASE change this when skidding or rebranding.
// It is used for analytics and doesn't affect gameplay
public static final String BRAND = "TudbuT/ttc:master";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tudbut/mod/client/ttc/mods/KillAura.java
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ public void onTick() {
if(!iTimer.isLocked()) {
iTimer.lock();
if(iterationsToDo > 0) {
BlockUtils.lookAt(entity.getPositionVector().addVector(0, (entity.getEntityBoundingBox().maxY - entity.getEntityBoundingBox().minY) / 2d, 0));
TTC.mc.playerController.attackEntity(TTC.player, entity);
if (swing)
TTC.player.swingArm(EnumHand.MAIN_HAND);
Expand All @@ -207,6 +206,7 @@ public void attackNext() {
if(!superAttack || entity.hurtTime <= 0) {
iterationsToDo = iterations;
iTimer.unlock();
this.entity = entity;
}
}

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": "ttc",
"name": "TTC Client",
"description": "",
"version": "v1.2.0b",
"version": "v1.2.0c",
"mcversion": "1.12.2",
"url": "",
"updateUrl": "",
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.2.0b
v1.2.0c

0 comments on commit fb7f573

Please sign in to comment.