From 994194452d5ab31217d5eb4b39e44f7034563a15 Mon Sep 17 00:00:00 2001 From: BlueWolf <61173114+BlueWolf3682@users.noreply.github.com> Date: Mon, 11 Jan 2021 08:13:28 -0700 Subject: [PATCH] fix a comment typo (#4307) --- core/src/mindustry/world/Block.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/world/Block.java b/core/src/mindustry/world/Block.java index b82a1ddb1a..76eec40dd1 100644 --- a/core/src/mindustry/world/Block.java +++ b/core/src/mindustry/world/Block.java @@ -80,9 +80,9 @@ public class Block extends UnlockableContent{ public boolean breakable; /** whether to add this block to brokenblocks */ public boolean rebuildable = true; - /** whether this water can only be placed on water */ + /** whether this block can only be placed on water */ public boolean requiresWater = false; - /** whether this water can be placed on any liquids, anywhere */ + /** whether this block can be placed on any liquids, anywhere */ public boolean placeableLiquid = false; /** whether this floor can be placed on. */ public boolean placeableOn = true;