diff --git a/eco-api/src/main/kotlin/com/willfp/eco/util/ListUtils.kt b/eco-api/src/main/kotlin/com/willfp/eco/util/ListUtils.kt index dcf85efb..180c0aee 100644 --- a/eco-api/src/main/kotlin/com/willfp/eco/util/ListUtils.kt +++ b/eco-api/src/main/kotlin/com/willfp/eco/util/ListUtils.kt @@ -17,5 +17,5 @@ fun Iterable.containsIgnoreCase(element: String): Boolean = /** * @see ListUtils.create2DList */ -fun create2DList(rows: Int, columns: Int): List> = +fun create2DList(rows: Int, columns: Int): MutableList> = ListUtils.create2DList(rows, columns)