Skip to content

Commit 514ae8b

Browse files
committed
Fix typos
1 parent c6a7168 commit 514ae8b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/control_draw/control_draw.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1945,7 +1945,7 @@ function control_draw() {
19451945

19461946
if (selected_vel != 100 || selected_pan != 100 || selected_pit != 0) {
19471947
xx += 4
1948-
if (language != 1) {draw_text_dynamic(xx, rh - 18, "Velovity: " + string(selected_vel)) xx += 100}
1948+
if (language != 1) {draw_text_dynamic(xx, rh - 18, "Velocity: " + string(selected_vel)) xx += 100}
19491949
else {draw_text_dynamic(xx, rh - 18, "音量: " + string(selected_vel)) xx += 100}
19501950
draw_separator(xx, rh - 20)
19511951
draw_theme_color()

scripts/draw_window_schematic_export/draw_window_schematic_export.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function draw_window_schematic_export() {
114114
if (draw_checkbox(x1 + 170, y1 + 320, sch_exp_loop, "Include looping option", "Whether to add a lever that toggles looping.", false, true)) sch_exp_loop=!sch_exp_loop
115115
}
116116
if (structure = true) {
117-
if (draw_checkbox(x1 + 170, y1 + 320 + (sch_exp_layout = 0) * 20, command_block, "Use Command Blocks", "Whether to use command blocks instesd of note blocks for a wider octave range.\n(Extra notes pack required)", false, true)) command_block=!command_block
117+
if (draw_checkbox(x1 + 170, y1 + 320 + (sch_exp_layout = 0) * 20, command_block, "Use command blocks", "Whether to use command blocks instead of note blocks for a wider octave range.\n(Extra notes pack required)", false, true)) command_block=!command_block
118118
}
119119
} else {
120120
if (draw_checkbox(x1 + 170, y1 + 290, sch_exp_glass, "Create glass floor", "Whether a glass floor should\nmake all the note blocks visible.")) sch_exp_glass=!sch_exp_glass

scripts/draw_window_track_export/draw_window_track_export.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function draw_window_track_export() {
9999
draw_text_dynamic(x1 + 16, y1 + 280, "For Minecraft version:")
100100
draw_radiobox(x1 + 32, y1 + 300, 1, "1.13+", "Create a Structure block file that is compatible with 1.13+.\nOnly the default block choice is supported.", 1)
101101
if (draw_checkbox(x1 + 170, y1 + 240, sch_exp_includelocked, "Include locked layers", "Whether to include locked layers in the Schematic.", false, true)) sch_exp_includelocked=!sch_exp_includelocked
102-
if (draw_checkbox(x1 + 170, y1 + 260 + (sch_exp_layout = 0) * 20, command_block, "Use Command Blocks", "Whether to use command blocks instesd of note blocks for a wider octave range.\n(Extra notes pack required)", false, true)) command_block=!command_block
102+
if (draw_checkbox(x1 + 170, y1 + 260 + (sch_exp_layout = 0) * 20, command_block, "Use command blocks", "Whether to use command blocks instead of note blocks for a wider octave range.\n(Extra notes pack required)", false, true)) command_block=!command_block
103103
draw_text_dynamic(x1 + 380, y1 + 220, "Note blocks:")
104104
draw_text_dynamic(x1 + 380, y1 + 220 + 16 * 1, "Repeaters:")
105105
draw_text_dynamic(x1 + 380, y1 + 220 + 16 * 2, "Size:")

0 commit comments

Comments
 (0)