Commit 4c8a9a07895f07a808c6e30b8d89bd2df14a0339
1 parent
8a1fd015
Runic/Infusion saturation do not prevent entering the worldmap anymore
git-svn-id: http://svn.net-core.org/repos/t-engine4@3886 51575b47-30f0-44d4-a5cc-537603b46e54
Showing
2 changed files
with
4 additions
and
1 deletions
... | ... | @@ -1147,7 +1147,7 @@ function _M:setupCommands() |
1147 | 1147 | local stop = {} |
1148 | 1148 | for eff_id, p in pairs(self.player.tmp) do |
1149 | 1149 | local e = self.player.tempeffect_def[eff_id] |
1150 | - if e.status == "detrimental" then stop[#stop+1] = e.desc end | |
1150 | + if e.status == "detrimental" and not e.no_stop_enter_worlmap then stop[#stop+1] = e.desc end | |
1151 | 1151 | end |
1152 | 1152 | |
1153 | 1153 | if e.change_zone and #stop > 0 and e.change_zone:find("^wilderness") then | ... | ... |
... | ... | @@ -30,6 +30,7 @@ newEffect{ |
30 | 30 | long_desc = function(self, eff) return ("The more you use infusions, the longer they will take to recharge (+%d cooldowns)."):format(eff.power) end, |
31 | 31 | type = "infusion", |
32 | 32 | status = "detrimental", |
33 | + no_stop_enter_worlmap = true, | |
33 | 34 | parameters = { power=1 }, |
34 | 35 | on_merge = function(self, old_eff, new_eff) |
35 | 36 | old_eff.dur = new_eff.dur |
... | ... | @@ -44,6 +45,7 @@ newEffect{ |
44 | 45 | long_desc = function(self, eff) return ("The more you use runes, the longer they will take to recharge (+%d cooldowns)."):format(eff.power) end, |
45 | 46 | type = "rune", |
46 | 47 | status = "detrimental", |
48 | + no_stop_enter_worlmap = true, | |
47 | 49 | parameters = { power=1 }, |
48 | 50 | on_merge = function(self, old_eff, new_eff) |
49 | 51 | old_eff.dur = new_eff.dur |
... | ... | @@ -58,6 +60,7 @@ newEffect{ |
58 | 60 | long_desc = function(self, eff) return ("The more you use taints, the longer they will take to recharge (+%d cooldowns)."):format(eff.power) end, |
59 | 61 | type = "taint", |
60 | 62 | status = "detrimental", |
63 | + no_stop_enter_worlmap = true, | |
61 | 64 | parameters = { power=1 }, |
62 | 65 | on_merge = function(self, old_eff, new_eff) |
63 | 66 | old_eff.dur = new_eff.dur | ... | ... |
-
Please register or login to post a comment