From 22220b1b951995cdb919fcab9e70dc0f4fc1c4ca Mon Sep 17 00:00:00 2001 From: Daniel Mills Date: Tue, 12 Jan 2021 05:42:18 -0500 Subject: [PATCH] Add vacuum mode --- src/main/java/com/volmit/iris/object/ObjectPlaceMode.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/volmit/iris/object/ObjectPlaceMode.java b/src/main/java/com/volmit/iris/object/ObjectPlaceMode.java index fef25d2ad..44fbfb589 100644 --- a/src/main/java/com/volmit/iris/object/ObjectPlaceMode.java +++ b/src/main/java/com/volmit/iris/object/ObjectPlaceMode.java @@ -38,7 +38,7 @@ public enum ObjectPlaceMode @DontObfuscate PAINT, - @Desc("Applies multiple terrain features into the parallax layer before this object places to distort the height, essentially vacuuming the terrain's heightmap closer to the bottom of this object.") + @Desc("Applies multiple terrain features into the parallax layer before this object places to distort the height, essentially vacuuming the terrain's heightmap closer to the bottom of this object. Uses MAX_HEIGHT to place") @DontObfuscate - VACUUM; + VACUUM }