Skip to content

Commit d0cb987

Browse files
committed
Actually fix #11
1 parent f6c1426 commit d0cb987

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.seanomik</groupId>
88
<artifactId>energeticstorage</artifactId>
9-
<version>0.6.0-SNAPSHOT</version>
9+
<version>0.6.1-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>EnergeticStorage</name>

src/main/java/net/seanomik/energeticstorage/gui/ESDriveGUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ public void onInventoryClick(InventoryClickEvent event) {
213213
event.setCancelled(false);
214214

215215
List<ESDrive> drives = esSystem.getESDrives();
216-
drives.add(slot - 2, new ESDrive(cursor));
216+
drives.add(new ESDrive(cursor));
217217
esSystem.setESDrives(drives);
218218
}
219219
}

0 commit comments

Comments
 (0)