@wayward/types 2.15.2-beta.dev.20251109.1 → 2.15.2-beta.dev.20251111.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.
@@ -258,7 +258,7 @@ export default class Doodad extends EntityMovable<IDoodadDescription, DoodadType
258
258
  * @param bypassChange Set to true if you just want to check if fertility can be increased.
259
259
  * @returns True or false depending on if it increased in fertility or not.
260
260
  */
261
- increaseFertility(bypassChange?: boolean, sendMessage?: boolean): boolean;
261
+ increaseFertility(bypassChange?: boolean, sendMessage?: boolean, bypassRipeningCheck?: boolean): boolean;
262
262
  /**
263
263
  * Return extra trap damage based on player multiplier and magical status
264
264
  */
@@ -86,7 +86,7 @@ export interface IDoodadDescription extends IObjectDescription, IModdable, ICaus
86
86
  canBreak?: boolean;
87
87
  /**
88
88
  * This doodad will be able to grow up until and including this stage.
89
- * For example, conifers can grow up until seeding, but not bare. Most trees can grow until bare. Other plants, usually ripening.
89
+ * For example, conifers can grow up until seeding, but not bare. Most trees can grow until bare. Other plants, usually ripening. This is used to reset growth back to budding after reaching max growth (unless growsIntoTerrain is set).
90
90
  */
91
91
  canGrow?: GrowingStage;
92
92
  canGrowInCaves?: boolean;
@@ -57,6 +57,8 @@ export default class Reflection {
57
57
  * Note: For exports where only one matches, the discriminator `which` parameter is unnecessary.
58
58
  */
59
59
  export(name: string, which: number): unknown;
60
+ where(name: string): string[];
61
+ private findExport;
60
62
  private warn;
61
63
  private setLastQueryCloseMatches;
62
64
  findPath(value: unknown): Generator<string[]>;
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.15.2-beta.dev.20251109.1",
4
+ "version": "2.15.2-beta.dev.20251111.1",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",