From 6fb6098acf7f48ff8b01a74077474d0c09a99ea0 Mon Sep 17 00:00:00 2001 From: DogooFalchion Date: Thu, 19 Jan 2017 19:10:53 -0500 Subject: [PATCH] Add campfire to the orientable tiles list. --- TShockAPI/GetDataHandlers.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 85340da0..4d331c70 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -1691,7 +1691,9 @@ namespace TShockAPI /// Womannequin, /// MinecartTrack, /// WeaponsRack, - /// LunarMonolith + /// LunarMonolith, + /// TargetDummy, + /// Campfire /// private static int[] orientableTiles = new int[] { @@ -1710,7 +1712,8 @@ namespace TShockAPI TileID.WeaponsRack, TileID.ItemFrame, TileID.LunarMonolith, - TileID.TargetDummy + TileID.TargetDummy, + TileID.Campfire }; private static bool HandleSendTileSquare(GetDataHandlerArgs args)