From 61f732d3301a80d8aea8a56522726398d87b2a9d Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 30 Jan 2021 11:10:05 -0500 Subject: [PATCH] tile: add setter for ground object --- runelite-api/src/main/java/net/runelite/api/Tile.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/runelite-api/src/main/java/net/runelite/api/Tile.java b/runelite-api/src/main/java/net/runelite/api/Tile.java index be35c8c3d2..9c0565ea31 100644 --- a/runelite-api/src/main/java/net/runelite/api/Tile.java +++ b/runelite-api/src/main/java/net/runelite/api/Tile.java @@ -61,6 +61,13 @@ public interface Tile */ GroundObject getGroundObject(); + /** + * Sets the object on the ground layer of the tile. + * + * @param groundObject the ground object + */ + void setGroundObject(GroundObject groundObject); + /** * Gets the wall of the tile. *