diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-08-13 18:55:46 +0200 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-08-13 18:55:46 +0200 |
commit | c52e0e81ea1584e37359ff9e77b00c3e35045ced (patch) | |
tree | b784106b72e245fba95350262d1a394c031a84df /MCServer/Plugins/Core/console.lua | |
parent | Merge pull request #84 from tonibm19/patch-2 (diff) | |
download | cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.gz cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.bz2 cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.lz cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.xz cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.tar.zst cuberite-c52e0e81ea1584e37359ff9e77b00c3e35045ced.zip |
Diffstat (limited to 'MCServer/Plugins/Core/console.lua')
-rw-r--r-- | MCServer/Plugins/Core/console.lua | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/MCServer/Plugins/Core/console.lua b/MCServer/Plugins/Core/console.lua index 44fdc83ff..669d7c9cb 100644 --- a/MCServer/Plugins/Core/console.lua +++ b/MCServer/Plugins/Core/console.lua @@ -336,27 +336,3 @@ function HandleConsoleUnload(Split) Out = Out .. "Num loaded chunks after: " .. cRoot:Get():GetTotalChunkCount(); return true, Out; end - - --- Helper functions: - ---- Returns the list of players banned by name, separated by ", " -function BanListByName() - local NumValues = BannedPlayersIni:NumValues("Banned"); - local Banned = {}; - local KeyID = BannedPlayersIni:FindKey("Banned"); - for i = 1, NumValues do - local PlayerName = BannedPlayersIni:ValueName(KeyID, i - 1); - if (BannedPlayersIni:GetValueB("Banned", PlayerName)) then - -- Player listed AND banned - table.insert(Banned, PlayerName); - end - end - return table.concat(Banned, ", "); -end - ---- Returns the list of players banned by IP, separated by ", " -function BanListByIPs() - -- TODO: No IP ban implemented yet - return ""; -end |