Skip to content

Commit ff7042b

Browse files
committed
feat(api): fix alternating config option
1 parent d0a8d2d commit ff7042b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

commons/src/main/java/com/envyful/api/config/type/ConfigInterface.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ public List<ConfigItem> convert(List<ConfigItem> conversion, int height) {
7272
for(int y = 0; y < height; y++) {
7373
for (int x = 0; x < 9; x++) {
7474
if (x % 2 == 0) {
75-
conversion.add(primary);
75+
configItems.add(primary);
7676
} else {
77-
conversion.add(secondary);
77+
configItems.add(secondary);
7878
}
7979
}
8080
}

0 commit comments

Comments
 (0)