OSDN Git Service

W.I.P. IV: More reliable entity / block scanning (full depth chunk scan), rock stats...
[automap/automap.git] / Automap / Designators / DefaultDesignators.cs
index 8c88a89..a6b653f 100644 (file)
@@ -83,7 +83,9 @@ namespace Automap
 
                internal static void DecodeSign(ICoreClientAPI clientAPI, PointsOfInterest poi, BlockPos posn, Block block)
                {
+               #if DEBUG
                clientAPI.Logger.VerboseDebug("Sign Designator Invoked!");
+               #endif
                //sign Text into a POI field...
                BlockEntitySign signEntity = clientAPI.World.BlockAccessor.GetBlockEntity(posn) as BlockEntitySign;
                
@@ -105,7 +107,9 @@ namespace Automap
 
                internal static void DecodePostSign(ICoreClientAPI clientAPI, PointsOfInterest poi, BlockPos posn, Block block)
                {
+               #if DEBUG
                clientAPI.Logger.VerboseDebug("Post-sign Designator Invoked!");
+               #endif
                //sign post Text into a POI field...
                BlockEntitySignPost signEntity = clientAPI.World.BlockAccessor.GetBlockEntity(posn) as BlockEntitySignPost;