Skip to content

Commit

Permalink
Moved PlayerEvents in own package
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainStone committed May 20, 2017
1 parent f5841a8 commit 5298a54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/world/jnc/invsync/InventorySync.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import lombok.Getter;
import lombok.NonNull;
import world.jnc.invsync.config.Config;
import world.jnc.invsync.event.PlayerEvents;

@Plugin(id = InventorySync.ID, name = InventorySync.NAME, version = InventorySync.VERSION, description = InventorySync.DESCRIPTION, url = InventorySync.URL, authors = {
InventorySync.AUTHOR })
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package world.jnc.invsync;
package world.jnc.invsync.event;

import java.io.IOException;
import java.util.HashMap;
Expand All @@ -24,6 +24,8 @@

import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import world.jnc.invsync.DataSource;
import world.jnc.invsync.InventorySync;
import world.jnc.invsync.config.Config;
import world.jnc.invsync.util.InventorySerializer;

Expand Down

0 comments on commit 5298a54

Please sign in to comment.