From bf6950413b1a0a82a53947c87d5c35d8432edefb Mon Sep 17 00:00:00 2001 From: William Hubbard <75867393+Markil3@users.noreply.github.com> Date: Sat, 4 Feb 2023 10:14:42 -0700 Subject: [PATCH] Adds a list compiling all obstacles. --- artrepository.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/artrepository.py b/artrepository.py index 98861a7..ddc20c4 100644 --- a/artrepository.py +++ b/artrepository.py @@ -42,3 +42,5 @@ leaf = SpriteImage(bytearray([128,1,1,1,3,3,3,71,135,15,15,31,63,255,255,255,255 UNDERGROUND_OBSTACLES = [skull, pizza, boulder, ball, steve, spaveinv, spaceinv2, mathroot, robot, dinojaw, dinospine, bone, bigdinohead, bigboneddiag, bigdoritotoobstacle] OVERGROUND_OBSTACLES = [leaf] + +OBSTACLES = UNDERGROUND_OBSTACLES + OVERGROUND_OBSTACLES