Skip to content

Commit

Permalink
Actually fix #11
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanOMik committed Apr 4, 2021
1 parent f6c1426 commit d0cb987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.seanomik</groupId>
<artifactId>energeticstorage</artifactId>
<version>0.6.0-SNAPSHOT</version>
<version>0.6.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>EnergeticStorage</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public void onInventoryClick(InventoryClickEvent event) {
event.setCancelled(false);

List<ESDrive> drives = esSystem.getESDrives();
drives.add(slot - 2, new ESDrive(cursor));
drives.add(new ESDrive(cursor));
esSystem.setESDrives(drives);
}
}
Expand Down

0 comments on commit d0cb987

Please sign in to comment.