Repairs some art repository bugs

This commit is contained in:
William Hubbard
2023-02-04 11:03:06 -07:00
parent 8aeceffb7c
commit d69ea1b6c7

View File

@@ -1,4 +1,4 @@
from collections.namedtuple from collections import namedtuple
SpriteImage = namedtuple("SpriteImage", ["image", "collision", "width", "height"]) SpriteImage = namedtuple("SpriteImage", ["image", "collision", "width", "height"])
@@ -130,7 +130,7 @@ leaf = SpriteImage(
16 16
) )
UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, mathroot, robot, dinoskull, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritotoobstacle] UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, mathroot, robot, dinoskull, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritoobstacle]
OVERGROUND_OBSTACLES = [spaveinv, spaceinv2, leaf] OVERGROUND_OBSTACLES = [spaceinv, spaceinv2, leaf]
OBSTACLES = UNDERGROUND_OBSTACLES + OVERGROUND_OBSTACLES OBSTACLES = UNDERGROUND_OBSTACLES + OVERGROUND_OBSTACLES