From 0de8a9bdc74dcfe7f0f764ee690bb9547a56659c Mon Sep 17 00:00:00 2001 From: Allison Fleischer Date: Mon, 13 Jan 2020 00:54:38 -0800 Subject: [PATCH 1/3] Fix a stray "seperate" tbh this word is very easy to misspell --- desktop_version/src/Script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/Script.cpp b/desktop_version/src/Script.cpp index 7736aa0b..640e24ee 100644 --- a/desktop_version/src/Script.cpp +++ b/desktop_version/src/Script.cpp @@ -1911,7 +1911,7 @@ void scriptclass::run( KeyPoll& key, Graphics& dwgfx, Game& game, mapclass& map, { dwgfx.textboxremovefast(); - dwgfx.createtextbox("The secret lab is seperate from", 50, 85, 174, 174, 174); + dwgfx.createtextbox("The secret lab is separate from", 50, 85, 174, 174, 174); dwgfx.addline("the rest of the game. You can"); dwgfx.addline("now come back here at any time"); dwgfx.addline("by selecting the new SECRET LAB"); From b5cb6cd5f419d5a1da19dfb6b3210e06f7a670f8 Mon Sep 17 00:00:00 2001 From: Allison Fleischer Date: Mon, 13 Jan 2020 00:59:12 -0800 Subject: [PATCH 2/3] Add self to CONTRIBUTORS --- desktop_version/CONTRIBUTORS.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop_version/CONTRIBUTORS.txt b/desktop_version/CONTRIBUTORS.txt index 79c8651c..782d57ca 100644 --- a/desktop_version/CONTRIBUTORS.txt +++ b/desktop_version/CONTRIBUTORS.txt @@ -7,6 +7,7 @@ Contributors * Charlie Bruce (@charliebruce) * Brian Callahan (@ibara) * Dav999 (Dav999-v) +* Allison Fleischer (AllisonFleischer) * Daniel Lee (@ddm999) * Elliott Saltar (@eboyblue3) * Marvin Scholz (@ePirat) From 2d88a558458d0d0a88d64c7021681bd958a53d87 Mon Sep 17 00:00:00 2001 From: Allison Fleischer Date: Mon, 13 Jan 2020 02:57:43 -0800 Subject: [PATCH 3/3] Fix "seperate" in mobile version as well oh god it's everywhere --- mobile_version/src/scriptclass.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile_version/src/scriptclass.as b/mobile_version/src/scriptclass.as index b4bba7ad..b1d12d8e 100644 --- a/mobile_version/src/scriptclass.as +++ b/mobile_version/src/scriptclass.as @@ -1063,7 +1063,7 @@ }else if (words[0] == "foundlab2") { dwgfx.textboxremovefast(); - dwgfx.createtextbox("The secret lab is seperate from", 50, 85, 174, 174, 174); + dwgfx.createtextbox("The secret lab is separate from", 50, 85, 174, 174, 174); dwgfx.addline("the rest of the game. You can"); dwgfx.addline("now come back here at any time"); dwgfx.addline("by selecting the new SECRET LAB");