Skip to content

Commit

Permalink
Fix ropes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zack Piispanen committed Oct 1, 2013
1 parent b7da1e7 commit e72874d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TShockAPI/GetDataHandlers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1897,7 +1897,7 @@ private static bool HandleTile(GetDataHandlerArgs args)
return true;
}
// If they aren't selecting the item which creates the tile or wall, they're hacking.
if (editData != 127 && editData != (action == EditAction.PlaceTile ? selectedItem.createTile : selectedItem.createWall))
if ((editData != 127 && editData != 213) && editData != (action == EditAction.PlaceTile ? selectedItem.createTile : selectedItem.createWall))
{
args.Player.SendTileSquare(tileX, tileY);
return true;
Expand Down

0 comments on commit e72874d

Please sign in to comment.