summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-02-19 15:13:44 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-02-19 15:13:44 +0100
commit8e64ad0848494001c50109653b19339421418106 (patch)
tree0d8a87d6a090c36e684ef97020d104648b47d635 /MCServer/Plugins/Core
parentMinecarts can now be placed. (diff)
downloadcuberite-8e64ad0848494001c50109653b19339421418106.tar
cuberite-8e64ad0848494001c50109653b19339421418106.tar.gz
cuberite-8e64ad0848494001c50109653b19339421418106.tar.bz2
cuberite-8e64ad0848494001c50109653b19339421418106.tar.lz
cuberite-8e64ad0848494001c50109653b19339421418106.tar.xz
cuberite-8e64ad0848494001c50109653b19339421418106.tar.zst
cuberite-8e64ad0848494001c50109653b19339421418106.zip
Diffstat (limited to 'MCServer/Plugins/Core')
-rw-r--r--MCServer/Plugins/Core/console.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/Core/console.lua b/MCServer/Plugins/Core/console.lua
index 398b70eb4..25c484e79 100644
--- a/MCServer/Plugins/Core/console.lua
+++ b/MCServer/Plugins/Core/console.lua
@@ -82,7 +82,7 @@ function HandleConsolePlayers(Split)
if (PlayersInWorlds[WorldName] == nil) then
PlayersInWorlds[WorldName] = {};
end
- table.insert(PlayersInWorlds[WorldName], Player:GetName());
+ table.insert(PlayersInWorlds[WorldName], Player:GetName() .. " @ " .. Player:GetIP());
end
cRoot:Get():ForEachPlayer(AddToTable);