Fixed stupid bug where :getAnyExceptMissiles() was more like :getAnyExceptItems()

This commit is contained in:
shru 2018-12-20 11:37:52 -05:00
parent 498cf0d277
commit 8ffb656f84
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,6 @@ function item(t)
command = ("<IT+00%s"):format(t.id),
displayCmd = ("<GIT10%s"):format(t.id),
music = t.music or "<CMU0010",
kind = "missiles",
replaceBefore = t.replaceBefore,
}
end
@ -126,6 +125,7 @@ function missiles(t)
replaceBefore = {
["<EVE0030"] = "<CMU0010<GIT0006*MISSILE_TEXT*<RMU<EVE0030<END",
},
kind = "missiles",
}
end

View file

@ -1,6 +1,6 @@
require 'lib.strict'
local VERSION = '0.2'
local VERSION = '0.3'
Class = require 'lib.classic'
_ = require 'lib.moses'