From 2ef6c0ae96050ffd44bc8f1add19aa3806b1c5d6 Mon Sep 17 00:00:00 2001 From: GuglioIsStupid Date: Sun, 11 Aug 2024 03:27:01 -0400 Subject: [PATCH] fix crash --- src/love/modules/graphics.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/love/modules/graphics.lua b/src/love/modules/graphics.lua index d2662a9..98ae3fa 100644 --- a/src/love/modules/graphics.lua +++ b/src/love/modules/graphics.lua @@ -954,6 +954,7 @@ function graphics:doStickerTrans(func) end function graphics:drawStickers() + if not self.stickerGroup then return end self.stickerGroup:draw() end