Skip to content

Commit

Permalink
fixens
Browse files Browse the repository at this point in the history
  • Loading branch information
GuglioIsStupid committed Dec 16, 2024
1 parent 76715a6 commit 3801a3e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/love/data/characters/GFDarkCharacter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ function GFDark:beat(beat)
self.spr:beat(beat)
end

function GFDark:animate(...)
self.child:animate(...)
self.spr:animate(...)
function GFDark:animate(name, ...)
if name == "sad" then return end

self.child:animate(name, ...)
self.spr:animate(name,...)
end

function GFDark:isAnimated()
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3801a3e

Please sign in to comment.