Skip to content

Commit 36e5e46

Browse files
committed
Idk maybe fixes
2 parents 3f1e205 + ba40418 commit 36e5e46

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

index.lua

+14
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,14 @@ rota=255
2323
rotanum = 0
2424
menufont = Font.load(System.currentDirectory().."font.ttf")
2525
Font.setPixelSizes(menufont,30)
26+
<<<<<<< HEAD
2627
version="0.3.7"
2728
--Sound.init()
2829
--Sound.play(bgm,NO_LOOP)
30+
=======
31+
version="0.3.61"
32+
33+
>>>>>>> origin/master
2934
R12=0
3035
function loadall()
3136
Cookie = Graphics.loadImage(System.currentDirectory().."data/cookie.png")
@@ -52,7 +57,10 @@ function loadall()
5257
farm = Graphics.loadImage(System.currentDirectory().."data/farm.png")
5358
mine = Graphics.loadImage(System.currentDirectory().."data/mine.png")
5459
factory = Graphics.loadImage(System.currentDirectory().."data/factory.png")
60+
<<<<<<< HEAD
5561
bank = Graphics.loadImage(System.currentDirectory().."data/bank.png")
62+
=======
63+
>>>>>>> origin/master
5664
backgroundgrandma = Graphics.loadImage(System.currentDirectory().."data/backgroundgrandma.png")
5765
backgroundfarm = Graphics.loadImage(System.currentDirectory().."data/backgroundfarm.png")
5866
backgroundmine = Graphics.loadImage(System.currentDirectory().."data/backgroundmine.png")
@@ -291,10 +299,13 @@ while true do
291299
FACTORY.buyicon = FactoryBuyIcon
292300
FACTORY.name="Factory"
293301
end
302+
<<<<<<< HEAD
294303
if COOKIE.total>=1400000 then
295304
BANK.buyicon = BankBuyIcon
296305
BANK.name="Bank"
297306
end
307+
=======
308+
>>>>>>> origin/master
298309
if COOKIE.count >= CURSOR.price then
299310
Graphics.drawImage(STORE.x, STORE.y, CURSOR.buyicon)
300311
else
@@ -341,10 +352,13 @@ while true do
341352
if FACTORY.count>0 and FACTORY.currency ~= -1 then
342353
Graphics.drawImage(BACK.x, BACK.y+71*FACTORY.currency, backgroundfactory)
343354
Factories()
355+
<<<<<<< HEAD
344356
end
345357
if BANK.count>0 and BANK.currency ~= -1 then
346358
Graphics.drawImage(BACK.x, BACK.y+71*BANK.currency, backgroundbank)
347359
Banks()
360+
=======
361+
>>>>>>> origin/master
348362
end
349363

350364
Graphics.drawImage(0, 0, StoreHead)

0 commit comments

Comments
 (0)