Commit c85f5bd60a6796b33b3dd319a5ed390750f915cc

Authored by zhouhaihai
1 parent 4163e40a

新中继的屏蔽删掉

Showing 2 changed files with 5 additions and 3 deletions   Show diff stats
src/adv/Adv.lua
... ... @@ -1217,7 +1217,7 @@ local function chooseCommon(self, room, block, chooseData, choose, tag)
1217 1217 target:addBuff(effect[2])
1218 1218 end
1219 1219 end,
1220   - [13] = function()
  1220 + [13] = function() -- 显示地图
1221 1221 self:getCurMap():showMap()
1222 1222 self:backMapShow()
1223 1223 end,
... ...
src/adv/AdvMap.lua
... ... @@ -349,7 +349,8 @@ createMap = function(self, mapId, isEnter, isNewRelay)
349 349  
350 350 --开放出口
351 351 randomFunc[AdvEventType.Diner] = function()
352   - if not self.adv.isRelay or isEnter or isNewRelay then return false end
  352 + -- if not self.adv.isRelay or isEnter or isNewRelay then return false end
  353 + if not self.adv.isRelay or isEnter then return false end
353 354 end
354 355  
355 356 --boss
... ... @@ -388,7 +389,8 @@ createMap = function(self, mapId, isEnter, isNewRelay)
388 389 randomFunc[AdvEventType.Drop] = randomCommon
389 390 --交易所
390 391 randomFunc[AdvEventType.Trader] = function()
391   - if self.adv.isRelay and isNewRelay then return false end
  392 + -- if self.adv.isRelay and isNewRelay then return false end
  393 + if self.adv.isRelay then return false end
392 394 return randomCommon()
393 395 end
394 396 --建筑
... ...