diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-08-10 17:39:48 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-08-10 17:39:48 +0200 |
commit | d6a0f38f71221cb85131b1a098f674c6cc4ca889 (patch) | |
tree | ff392a1b1da378c2648aae745f75cbf598e61973 /MCServer | |
parent | Merge in the latest version of Core. (diff) | |
download | cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.tar cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.tar.gz cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.tar.bz2 cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.tar.lz cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.tar.xz cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.tar.zst cuberite-d6a0f38f71221cb85131b1a098f674c6cc4ca889.zip |
Diffstat (limited to 'MCServer')
-rw-r--r-- | MCServer/Plugins/Core/console.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MCServer/Plugins/Core/console.lua b/MCServer/Plugins/Core/console.lua index c4ee291ea..3b8c50b62 100644 --- a/MCServer/Plugins/Core/console.lua +++ b/MCServer/Plugins/Core/console.lua @@ -67,7 +67,7 @@ function HandleConsoleGive(Split) LOG("Gave " .. newPlayer:GetName() .. " " .. Item.m_ItemCount .. " times " .. Item.m_ItemType .. ":" .. Item.m_ItemDamage) else Player:SendMessage( cChatColor.Rose .. "[INFO] " .. cChatColor.White .. "Not enough space in inventory, only gave " .. ItemsGiven) - return true, "Only " .. Item.m_ItemCount .. " out of " .. ItemsGiven .. "items could be delivered.") + return true, "Only " .. Item.m_ItemCount .. " out of " .. ItemsGiven .. "items could be delivered." end end @@ -82,7 +82,6 @@ function HandleConsoleGive(Split) return true end -end function HandleConsoleBan(Split) if (#Split < 2) then |