Skip to content

Commit 7f198d3

Browse files
committed
Change schematic Minecraft version selector to not include 1.13
Was previously displaying 1.11+, which incorrectly indicated that any version after 1.11 is compatible. Currently, 1.13+ is not supported.
1 parent 2da2add commit 7f198d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/draw_window_schematic_export/draw_window_schematic_export.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if (selected_tab_sch = 0) {
7272
if (draw_radiobox(x1 + 32, y1 + 240, sch_exp_layout = 1, "Simple walkway", "Generate a simple walkway that stretches\nas far as the length of the song.")) sch_exp_layout = 1
7373
if (draw_radiobox(x1 + 32, y1 + 260, sch_exp_layout = 0, "Circular walkway", "Generate a walkway where the\nplayer travels back and forth.")) sch_exp_layout = 0
7474
draw_text(x1 + 16, y1 + 290, "For Minecraft version:")
75-
if (draw_radiobox(x1 + 32, y1 + 310, !sch_exp_minecraft_old, "1.11+", "Create a Schematic that is compatible with\nnew Minecraft versions only, starting at 1.11.")) sch_exp_minecraft_old = false
75+
if (draw_radiobox(x1 + 32, y1 + 310, !sch_exp_minecraft_old, "1.11-1.12", "Create a Schematic that is compatible with 1.11 or 1.12.\nNOTE: Support for versions 1.13+ is coming soon.")) sch_exp_minecraft_old = false
7676
if (draw_radiobox(x1 + 32, y1 + 330, sch_exp_minecraft_old, "pre 1.11", "Create a Schematic that is compatible with\nold Minecraft versions only, before 1.11.")) sch_exp_minecraft_old = true
7777
draw_text(x1 + 170, y1 + 220, "Repeaters per row:")
7878
sch_exp_notesperrow = median(5, draw_dragvalue(5, x1 + 300, y1 + 220, sch_exp_notesperrow, 1), 100)

0 commit comments

Comments
 (0)