More neutral sprites. Change barrel timeout.
This commit is contained in:
parent
d718d13b88
commit
9fa4ef5463
2 changed files with 5 additions and 1 deletions
|
@ -880,7 +880,9 @@ function mainLoop (species, genome)
|
|||
if game.getVelocityY() < -2104 then
|
||||
statusLine = "BARREL! "..frame
|
||||
statusColor = 0x00ffff00
|
||||
timeout = timeout + 60 * 12
|
||||
if timeout < timeoutConst + 60 * 12 then
|
||||
timeout = timeout + 60 * 12
|
||||
end
|
||||
end
|
||||
|
||||
local nextArea = game.getCurrentArea()
|
||||
|
|
|
@ -10,6 +10,7 @@ _M.NeutralSprites = {
|
|||
-- Our heroes
|
||||
0x00e4, -- Diddy
|
||||
0x00e8, -- Dixie
|
||||
0x0100, -- Stars
|
||||
|
||||
-- Items that require too much interaction
|
||||
0x01a4, -- Barrel
|
||||
|
@ -27,6 +28,7 @@ _M.NeutralSprites = {
|
|||
0x0160, -- Goal base
|
||||
0x0164, -- Goal barrel
|
||||
|
||||
0x0238, -- Pow
|
||||
0x023c, -- Exploding crate
|
||||
0x0258, -- No Animals Sign
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue