mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-22 06:43:03 +00:00
Fixed stupid bug where :getAnyExceptMissiles() was more like :getAnyExceptItems()
This commit is contained in:
parent
498cf0d277
commit
8ffb656f84
|
@ -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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require 'lib.strict'
|
||||
|
||||
local VERSION = '0.2'
|
||||
local VERSION = '0.3'
|
||||
|
||||
Class = require 'lib.classic'
|
||||
_ = require 'lib.moses'
|
||||
|
|
Loading…
Reference in a new issue