Skip to content

Commit 8fc8c45

Browse files
committed
fix 107% completion
1 parent 5f50666 commit 8fc8c45

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

base.tscn

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2769,16 +2769,15 @@ anchor_top = 1.0
27692769
anchor_right = 1.0
27702770
anchor_bottom = 1.0
27712771
margin_left = 60.0
2772-
margin_top = 600.0
2773-
margin_right = 774.0
2774-
margin_bottom = 840.0
2772+
margin_right = 10.0
2773+
margin_bottom = 240.0
27752774
grow_horizontal = 2
27762775
grow_vertical = 0
27772776
alignment = 2
27782777

27792778
[node name="name" type="Label" parent="gui/boss/VBoxContainer"]
27802779
margin_top = 72.0
2781-
margin_right = 2242.0
2780+
margin_right = 3006.0
27822781
margin_bottom = 159.0
27832782
custom_colors/font_color = Color( 0.843137, 0.921569, 0.729412, 1 )
27842783
custom_colors/font_color_shadow = Color( 0.494118, 0.678431, 0.45098, 1 )
@@ -2803,7 +2802,7 @@ autowrap = true
28032802

28042803
[node name="HBoxContainer" type="HBoxContainer" parent="gui/boss/VBoxContainer"]
28052804
margin_top = 200.0
2806-
margin_right = 2242.0
2805+
margin_right = 3006.0
28072806
margin_bottom = 240.0
28082807
custom_constants/separation = 50
28092808

@@ -3660,7 +3659,6 @@ centered = false
36603659
position = Vector2( 403, 261 )
36613660
scale = Vector2( 0.5, 0.5 )
36623661
frames = SubResource( 46 )
3663-
frame = 1
36643662
playing = true
36653663
centered = false
36663664

functions.gd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ func get_room_percent():
1111
if Persistent.places[room] == []:
1212
if !(room in Persistent.genbosses):
1313
room_count += 1
14-
else:
15-
if Persistent.genbosses[room]["alive"] == false:
16-
room_count += 1
14+
elif Persistent.genbosses[room]["alive"] == false:
15+
room_count += 1
1716

18-
return "%03.1f%%" % ((float(room_count) / 411) * 100)
17+
return "%03.1f%%" % ((float(room_count) / 441) * 100)
1918

2019

2120
func make_time(timetaken):

0 commit comments

Comments
 (0)