diff --git a/data/scripts/talkactions/god/set_icon.lua b/data/scripts/talkactions/god/set_icon.lua deleted file mode 100644 index 7765c1ed9f1..00000000000 --- a/data/scripts/talkactions/god/set_icon.lua +++ /dev/null @@ -1,23 +0,0 @@ -local icon = TalkAction("/guild") - -function icon.onSay(player, words, param) - -- create log - logCommand(player, words, param) - - local split = param:split(",") - local category = split[1] - local icon = split[2] - - local guild = player:getGuild() - local guildId = tonumber(param) - local otherGuild = Guild(guildId) - otherGuild:addEnemy(player:getGuild():getId()) - guild:addEnemy(guildId) - guild:updateEmblems() - otherGuild:updateEmblems() - return true -end - -icon:separator(" ") -icon:groupType("normal") -icon:register()