Change the comment.

This commit is contained in:
MEEP of Faith
2020-10-02 21:22:11 -07:00
committed by GitHub
parent f6d805638c
commit 8d4dff2481

View File

@@ -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;
}