From 00279c0e04231d478875d09bbf81bbc0408ca01e Mon Sep 17 00:00:00 2001 From: Fussmatte Date: Fri, 24 Feb 2023 20:38:44 -0500 Subject: [PATCH] Fix minor visual issue in int1yellow_5 Originally the changedir command was used here, making Vitellary look left and then immediately snap back to looking right. Now the changeai command is used instead to make him actually look left, and then look back to the right on his last textbox. --- desktop_version/src/Scripts.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/desktop_version/src/Scripts.cpp b/desktop_version/src/Scripts.cpp index 0de5fe4a..97130097 100644 --- a/desktop_version/src/Scripts.cpp +++ b/desktop_version/src/Scripts.cpp @@ -2724,7 +2724,7 @@ bool scriptclass::load(const std::string& name) "speak_active", "squeak(yellow)", - "changedir(yellow,0)", + "changeai(yellow,faceleft)", // changedir(yellow,0) doesn't work "text(yellow,0,0,3)", "We shouldn't really be able", "to move between dimensions", @@ -2733,7 +2733,6 @@ bool scriptclass::load(const std::string& name) "speak_active", "squeak(yellow)", - "changedir(yellow,0)", "text(yellow,0,0,2)", "Maybe this isn't a proper", "dimension at all?", @@ -2741,7 +2740,6 @@ bool scriptclass::load(const std::string& name) "speak_active", "squeak(yellow)", - "changedir(yellow,0)", "text(yellow,0,0,4)", "Maybe it's some kind of", "polar dimension? Something", @@ -2751,7 +2749,7 @@ bool scriptclass::load(const std::string& name) "speak_active", "squeak(yellow)", - "changedir(yellow,1)", + "changeai(yellow,0)", // Make him face right again "text(yellow,0,0,2)", "I can't wait to get back to the", "ship. I have a lot of tests to run!",