mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Finish debugpaste for sponge
This commit is contained in:
parent
6caa7ee757
commit
92b3ddb0ac
@ -1,6 +1,7 @@
|
|||||||
package com.plotsquared.sponge;
|
package com.plotsquared.sponge;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
@ -447,7 +448,10 @@ public class SpongeMain implements IPlotMain, PluginContainer {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> getPluginIds() {
|
public List<String> getPluginIds() {
|
||||||
// TODO Auto-generated method stub
|
ArrayList<String> names = new ArrayList<>();
|
||||||
return null;
|
for (PluginContainer plugin : game.getPluginManager().getPlugins()) {
|
||||||
|
names.add(plugin.getName() + ";" + plugin.getVersion() + ":" + true);
|
||||||
|
}
|
||||||
|
return names;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,5 +3,6 @@ package com.plotsquared.sponge.util;
|
|||||||
public class KillRoadMobs {
|
public class KillRoadMobs {
|
||||||
public void run() {
|
public void run() {
|
||||||
// TODO kill road mobs
|
// TODO kill road mobs
|
||||||
|
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -90,4 +90,9 @@ public class SpongeLowerOfflineUUIDWrapper extends UUIDWrapper {
|
|||||||
// TODO FIXME
|
// TODO FIXME
|
||||||
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public OfflinePlotPlayer getOfflinePlayer(String name) {
|
||||||
|
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -69,4 +69,9 @@ public class SpongeOnlineUUIDWrapper extends UUIDWrapper {
|
|||||||
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public OfflinePlotPlayer getOfflinePlayer(String name) {
|
||||||
|
throw new UnsupportedOperationException("NOT IMPLEMENTED YET");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user