diff --git a/core/src/mindustry/world/blocks/payloads/Payload.java b/core/src/mindustry/world/blocks/payloads/Payload.java index 00364fd5af..21b073d56e 100644 --- a/core/src/mindustry/world/blocks/payloads/Payload.java +++ b/core/src/mindustry/world/blocks/payloads/Payload.java @@ -25,7 +25,7 @@ public interface Payload{ return false; } - /** @return whether this payload fits on a standard 3x3 conveyor. */ + /** @return whether this payload fits in a given size. 2.5 is the max for a standard 3x3 conveyor. */ default boolean fits(float s){ return size() / tilesize <= s; }