From e3dfb1e3b72053d1aad0091f7ecbb7e416f439d2 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 2 Dec 2012 22:00:12 -0500 Subject: [PATCH] Fix #289 --- common/net/minecraftforge/common/ForgeInternalHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/net/minecraftforge/common/ForgeInternalHandler.java b/common/net/minecraftforge/common/ForgeInternalHandler.java index 7e87bcec1..f95da0f98 100644 --- a/common/net/minecraftforge/common/ForgeInternalHandler.java +++ b/common/net/minecraftforge/common/ForgeInternalHandler.java @@ -42,7 +42,7 @@ public class ForgeInternalHandler if (item == null) { FMLLog.warning("Attempted to add a EntityItem to the world with a invalid item: ID %d at " + - "(%d, %d, %d), this is most likely a config issue between you and the server. Please double check your configs", + "(%2.2f, %2.2f, %2.2f), this is most likely a config issue between you and the server. Please double check your configs", stack.itemID, entity.posX, entity.posY, entity.posZ); entity.setDead(); event.setCanceled(true);