From d69ea1b6c7bfc199c1094246ef5a43f9f4c7cbcd Mon Sep 17 00:00:00 2001 From: William Hubbard <75867393+Markil3@users.noreply.github.com> Date: Sat, 4 Feb 2023 11:03:06 -0700 Subject: [PATCH] Repairs some art repository bugs --- artrepository.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/artrepository.py b/artrepository.py index 3e409f8..127633d 100644 --- a/artrepository.py +++ b/artrepository.py @@ -1,4 +1,4 @@ -from collections.namedtuple +from collections import namedtuple SpriteImage = namedtuple("SpriteImage", ["image", "collision", "width", "height"]) @@ -130,7 +130,7 @@ leaf = SpriteImage( 16 ) -UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, mathroot, robot, dinoskull, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritotoobstacle] -OVERGROUND_OBSTACLES = [spaveinv, spaceinv2, leaf] +UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, mathroot, robot, dinoskull, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritoobstacle] +OVERGROUND_OBSTACLES = [spaceinv, spaceinv2, leaf] OBSTACLES = UNDERGROUND_OBSTACLES + OVERGROUND_OBSTACLES