Skip to content
Snippets Groups Projects
Commit 50b6c794 authored by dg's avatar dg
Browse files

Fixes

git-svn-id: http://svn.net-core.org/repos/t-engine4@2907 51575b47-30f0-44d4-a5cc-537603b46e54
parent 5e42470b
No related branches found
No related tags found
No related merge requests found
......@@ -96,6 +96,7 @@ function _M:event(e)
elseif e.se == "ChannelList" then
local info = zlib.decompress(e.data):unserialize()
if not info then return end
if not e.channel or not self.channels[e.channel] then return end
self.channels[e.channel].users = {}
for _, user in ipairs(info.users) do
self.channels[e.channel].users[user.login] = {
......
......@@ -340,7 +340,7 @@ function _M:calculateWave()
special = function (self) if game.level.arena.currentWave > 35 then self.entity = { name = "high slinger" } end return self end },
{ entity = { name = "dremling" },
wave = 1, power = 6, delay = 2, bonus = 0.3 , score = 100, entry = 2,
special = function (self) if game.level.arena.currentWave > 15 then self.wave = 2 end end },
special = function (self) if game.level.arena.currentWave > 15 then self.wave = 2 end return self end },
{ entity = { name = "brown bear" },
wave = 1, power = 4, delay = 3, bonus = 0.2, score = 100 , entry = 2},
{ entity = { type = "animal", subtype = "snake" },
......
......@@ -23,7 +23,7 @@ return {
{ 30, "Gold", },
{ 45, "Stralite", },
{ 31, "Voratun", },
{ 3, "Acuisition", },
{ 3, "Acquisition", },
{ 45, "Profit", },
{ 30, "Wealth", },
{ 45, "Dearth", },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment