Skip to content

Commit

Permalink
Update for 2.14.0-beta.dev.20241202.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Spacetech committed Dec 2, 2024
1 parent ec1f71a commit 038bbc9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"watch": "npx tsc --build --watch --pretty --preserveWatchOutput"
},
"devDependencies": {
"@wayward/types": "^2.14.0-beta.dev.20241130.1",
"@wayward/types": "^2.14.0-beta.dev.20241201.1",
"rimraf": "3.0.2",
"typescript": "^5.7.2"
}
Expand Down
6 changes: 3 additions & 3 deletions src/WhatsThis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { EventBus } from "@wayward/game/event/EventBuses";
import { EventHandler } from "@wayward/game/event/EventManager";
import ENGLISH from "@wayward/game/language/English";
import Language from "@wayward/game/language/Language";
import LanguageManager from "@wayward/game/language/LanguageManager";
import type LanguageManager from "@wayward/game/language/LanguageManager";
import Mod from "@wayward/game/mod/Mod";
import Register from "@wayward/game/mod/ModRegistry";
import { IStringSection } from "@wayward/game/utilities/string/Interpolator";
import type { IStringSection } from "@wayward/game/utilities/string/Interpolator";
import { Tuple } from "@wayward/utilities/collection/Tuple";
import { Bound } from "@wayward/utilities/Decorators";
import { generalRandom } from "@wayward/utilities/random/RandomUtilities";
Expand All @@ -30,7 +30,7 @@ const kawaiiFaces = [
"(n˘v˘•)¬",
];

const sectionReplacements: [RegExp, string[], boolean?][] = [
const sectionReplacements: Array<[RegExp, string[], boolean?]> = [
// words
Tuple(/\bthe\b/g, ["twa", "tba", "da"]),
Tuple(/\byes\b/g, ["mmhmb"]),
Expand Down

0 comments on commit 038bbc9

Please sign in to comment.