Skip to content

Commit

Permalink
Add credit and clean code up
Browse files Browse the repository at this point in the history
Ready it for updating on Bukkit and Spigot
  • Loading branch information
chuushi committed Feb 7, 2022
1 parent 91d555e commit 7a0bea2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
import org.bukkit.event.world.ChunkUnloadEvent;
import org.bukkit.persistence.PersistentDataType;

import java.util.*;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.UUID;

public class PhantomListener implements Listener {
private static final String DISALLOW_SPAWN_PERM = "phantomsmp.disallowspawn";
Expand Down
6 changes: 5 additions & 1 deletion src/main/java/com/simonorj/mc/phantomsmp/PhantomSMP.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
import org.bstats.bukkit.Metrics;
import org.bukkit.plugin.java.JavaPlugin;

import java.io.*;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.logging.Level;

public class PhantomSMP extends JavaPlugin {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: PhantomSMP
version: @version@
author: Simon Chuu
authors: [Simon Chuu, Phoenix616]
description: Advanced phantom mechanics especially for SMP servers
main: com.simonorj.mc.phantomsmp.PhantomSMP
website: https://github.com/SimonOrJ/PhantomSMP
Expand Down

0 comments on commit 7a0bea2

Please sign in to comment.