@wayward/types 2.14.5-beta.dev.20250518.1 → 2.14.5-beta.dev.20250520.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.
@@ -65,6 +65,10 @@ export interface IMakeCaveOptions {
65
65
  * The range of tiles outward to check for another cave so we don't create them too close together.
66
66
  */
67
67
  rangeCheck?: number;
68
+ /**
69
+ * If set to true, we won't check for passable terrain adjacent to the cave (this doesn't count water).
70
+ */
71
+ disablePassableCheck?: boolean;
68
72
  }
69
73
  /**
70
74
  * Tile class
@@ -16,6 +16,7 @@ export default class WorldTooltipHandler extends InspectionsTooltipHandler<TileI
16
16
  private currentInspectionTile;
17
17
  private currentOverlayInfo;
18
18
  private nextInspectionTile;
19
+ private lastCursorTile;
19
20
  private pendingSetInspectionTileTimeout;
20
21
  private lastSetInspectionTileTime;
21
22
  protected initializeHints(hints: InspectionTooltipHints): void;
@@ -23,5 +24,6 @@ export default class WorldTooltipHandler extends InspectionsTooltipHandler<TileI
23
24
  protected initializeInspections(): TileInspectionsList | undefined;
24
25
  protected onUpdateTooltipPosition(position: Vector2): void;
25
26
  private setInspectionTile;
27
+ private renderWorldCursor;
26
28
  protected updatePosition(): void;
27
29
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@wayward/types",
3
3
  "description": "TypeScript declarations for Wayward, used for modding.",
4
- "version": "2.14.5-beta.dev.20250518.1",
4
+ "version": "2.14.5-beta.dev.20250520.1",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",