Skip to content

Commit 292e718

Browse files
committed
Fix missing space in Compatibility window
Fixes #111
1 parent 11f5423 commit 292e718

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/draw_window_minecraft/draw_window_minecraft.gml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ if (selected_tab_mc = 0) { // Schematic
140140
if (block_custom > 0) {
141141
draw_set_color(c_red)
142142
if (block_custom = 1) draw_text(x1 + 45, yy + 16, "There is 1 block with custom instruments.")
143-
else draw_text(x1 + 45, yy + 16, "There are " + string(block_custom) + "blocks with custom instruments.")
143+
else draw_text(x1 + 45, yy + 16, "There are " + string(block_custom) + " blocks with custom instruments.")
144144
if (draw_button2(x1 + 45, yy + 34, 160, "Select affected blocks")) {
145145
select_custom()
146146
window = 0
@@ -225,7 +225,7 @@ if (selected_tab_mc = 0) { // Schematic
225225
draw_sprite(spr_yesno, 2, x1 + 25, yy + 8)
226226
draw_set_color(c_orange)
227227
if (block_custom = 1) draw_text(x1 + 45, yy + 32, "There is 1 block with custom instruments.")
228-
else draw_text(x1 + 45, yy + 32, "There are " + string(block_custom) + "blocks with custom instruments.")
228+
else draw_text(x1 + 45, yy + 32, "There are " + string(block_custom) + " blocks with custom instruments.")
229229
if (draw_button2(x1 + 45, yy + 50, 160, "Select affected blocks")) {
230230
select_custom()
231231
window = 0

0 commit comments

Comments
 (0)