Fixed Bugs

This commit is contained in:
Exobyt 2024-08-20 14:50:39 +02:00
parent 08ae4632d4
commit f7d00a3381
5 changed files with 12 additions and 18 deletions

View file

@ -285,11 +285,14 @@ func testRows():
splitOphansUID(j.UID)
if j.expand:
GLOBAL.points += j.type * 2
GLOBAL.time += j.type * 4
GLOBAL.time += j.type
elif not j.expand:
GLOBAL.points += j.type
GLOBAL.time += j.type * 2
GLOBAL.time += j.type
j.queue_free()
for j in getBlockGroupsList():
if j != GLOBAL.currentUID:
if j != GLOBAL.currentUID:
moveUidGroup(GLOBAL.Direction.BOTTOM, j)
func toggleButton():
$Camera2D/CanvasLayer/Control.toggleButton()