@wayward/types 2.14.4-beta.dev.20250123.1 → 2.14.4-beta.dev.20250124.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,6 +12,7 @@ import { InfoProvider } from "@wayward/game/game/inspection/InfoProvider";
12
12
  import { StatInfo } from "@wayward/game/game/inspection/infoProviders/stat/StatInfo";
13
13
  export default class GenericInfo extends StatInfo {
14
14
  readonly score: InfoProvider.Observer<number>;
15
+ readonly tier: InfoProvider.Observer<number>;
15
16
  readonly totalCivilizationScore: InfoProvider.Observer<number>;
16
17
  readonly civilizationScore: InfoProvider.Observer<number>;
17
18
  readonly turns: InfoProvider.Observer<number>;
@@ -595,6 +595,7 @@ export interface IMoveToTileOptions {
595
595
  * Note: Everything done in afterMovement must be clientside only
596
596
  */
597
597
  afterMovement?: IMoveToTileAfterMovementOptions;
598
+ skipWeightChecks?: boolean;
598
599
  }
599
600
  export interface IMoveToTileBeforeMovementOptions {
600
601
  remove?: boolean;
@@ -850,6 +850,7 @@ declare enum Message {
850
850
  YouUnequip = 838,
851
851
  YouUsed = 839,
852
852
  YouViewTheItemsOn = 840,
853
- YouWhileTraveling = 841
853
+ YouWhileTraveling = 841,
854
+ ActionRestAdjacentCreature = 842
854
855
  }
855
856
  export default Message;