Skip to content

Commit

Permalink
Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-F committed Jan 20, 2022
1 parent a9d6de7 commit f517d1a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// 4139
[clientscript,tutorial_displayname_allow_input](component $component0, component $component1, component $component2, component $component3, component $component4, boolean $boolean5)
~tutorial_displayname_allow_input($component0, $component1, $component2, $component3, $component4, $boolean5, 1);
~tutorial_displayname_allow_input($component0, $component1, $component2, $component3, $component4, $boolean5, true);
2 changes: 1 addition & 1 deletion scripts/[clientscript,tutorial_displayname_push_name].cs2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// 4144
[clientscript,tutorial_displayname_push_name](component $component0, component $component1, component $component2, component $component3, component $component4, string $string0)
~tutorial_displayname_allow_input($component0, $component1, $component2, $component3, $component4, false, 0);
~tutorial_displayname_allow_input($component0, $component1, $component2, $component3, $component4, false, false);
%varcstring436 = $string0;
%varcstring437 = $string0;
~tutorial_displayname_update_input($component2, $string0);
2 changes: 1 addition & 1 deletion scripts/[proc,script4147].cs2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// 4147
[proc,script4147](component $component0, component $component1, component $component2, component $component3, component $component4)
~tutorial_displayname_allow_input($component0, $component1, $component2, $component3, $component4, false, 0);
~tutorial_displayname_allow_input($component0, $component1, $component2, $component3, $component4, false, false);
if (compare(%varcstring436, %varcstring437) ! 0) {
resume_stringdialog(%varcstring436);
} else {
Expand Down
4 changes: 2 additions & 2 deletions scripts/[proc,tutorial_displayname_allow_input].cs2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// 4140
[proc,tutorial_displayname_allow_input](component $component0, component $component1, component $component2, component $component3, component $component4, boolean $boolean5, int $int6)
[proc,tutorial_displayname_allow_input](component $component0, component $component1, component $component2, component $component3, component $component4, boolean $boolean5, boolean $boolean6)
%varcint435 = $boolean5;
if ($boolean5 = true) {
if_setonkey("tutorial_displayname_onkey($component0, $component1, $component2, $component3, $component4, event_key, event_keychar)", $component2);
Expand All @@ -23,6 +23,6 @@ if ($boolean5 = true) {
}
}
~tutorial_displayname_update_input($component2, %varcstring436);
if ($int6 = 1) {
if ($boolean6 = true) {
~tutorial_displayname_buttons($component0, $component1, $component2, $component3, $component4);
}

0 comments on commit f517d1a

Please sign in to comment.