Skip to content

Commit

Permalink
wait did i not push this
Browse files Browse the repository at this point in the history
  • Loading branch information
GuglioIsStupid committed May 30, 2024
1 parent 24227a3 commit f23d1cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/love/misc/dating.lua
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ return {
-- Clothing hangers favourite

enter = function(self)
tankman = love.filesystem.load("sprites/week7/tankmanCaptain.lua")()
tankman = love.filesystem.load("sprites/characters/tankmanCaptain.lua")()

tankman:animate("idle", true)
tankman.sizeX = -0.65
Expand Down
4 changes: 2 additions & 2 deletions src/love/modding/importMods.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ function importMods.loadMod(mod) -- The file name of the mod
if #scriptData > 1 then
if scriptData[1] then
if scriptData[2] == "uiHealthbarText"then
importMods.uiHealthbarTextMod = scriptData
importMods.uiHealthbarTextMod = scriptData[3]
elseif scriptData[2] == "uiHealthbar" then
importMods.uiHealthbarMod = scriptData
importMods.uiHealthbarMod = scriptData[3]
end
end
end
Expand Down
1 change: 0 additions & 1 deletion src/love/modules/graphics.lua
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ return {
udraw = function(self, sx, sy)
local sx = sx or 7
local sy = sy or sx
print(sx, sy)
local x = self.x
local y = self.y

Expand Down

0 comments on commit f23d1cc

Please sign in to comment.