Skip to content

Commit

Permalink
v1.6.4.5
Browse files Browse the repository at this point in the history
* Fixed natural wormholes relocating improperly via Chaos Bomb hits
  • Loading branch information
hamstar committed Jul 31, 2017
1 parent c45e029 commit 774cc3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Wormholes/WormholePortal.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using HamstarHelpers.MiscHelpers;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Terraria;
using Terraria.ID;
Expand Down Expand Up @@ -77,6 +76,7 @@ public void Close() {

public void ChangePosition( Vector2 pos ) {
this._pos = pos;
this.Rect = new Rectangle( (int)pos.X, (int)pos.Y, this.Rect.Width, this.Rect.Height );
}

////////////////
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author = hamstar
version = 1.6.4.4
version = 1.6.4.5
displayName = Wormholes
modReferences = HamstarHelpers
buildIgnore = *.csproj, *.user, obj\*, bin\*, .vs\*
Expand Down

0 comments on commit 774cc3f

Please sign in to comment.