mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-11-15 23:25:39 +01:00
Removed unneeded system outs
This commit is contained in:
parent
f219b99e3a
commit
a7d49e7eae
@ -69,9 +69,6 @@ public class AdvancedPortalsCore {
|
||||
this.dataCollector = dataCollector;
|
||||
this.mcMinorVer = this.checkMcVer(mcVer);
|
||||
|
||||
|
||||
System.out.println("Core");
|
||||
|
||||
this.onEnable();
|
||||
}
|
||||
|
||||
|
@ -25,7 +25,6 @@ public class CreatePortalSubCommand extends CreateSubCommand implements SubComma
|
||||
}
|
||||
ArrayList<DataTag> portalTags = this.getTagsFromArgs(args);
|
||||
|
||||
System.out.println(Arrays.toString(portalTags.toArray()));
|
||||
AdvancedPortal portal = AdvancedPortalsCore.getPortalServices().createPortal(args[1], player, portalTags);
|
||||
if(portal != null) {
|
||||
sender.sendMessage(Lang.translateColor("messageprefix.positive") + Lang.translateColor("command.create.complete"));
|
||||
|
@ -16,7 +16,6 @@ public class RepositoryModule extends AbstractModule {
|
||||
|
||||
@Override
|
||||
protected void configure() {
|
||||
System.out.println("Configured");
|
||||
bind(PortalRepository.class).to(PortalRepositoryImpl.class).in(Scopes.SINGLETON);
|
||||
bind(DestinationRepository.class).to(DestinationRepositoryImpl.class).in(Scopes.SINGLETON);
|
||||
bind(PortalTempDataRepository.class).to(PortalTempDataRepositoryImpl.class).in(Scopes.SINGLETON);
|
||||
@ -25,7 +24,6 @@ public class RepositoryModule extends AbstractModule {
|
||||
|
||||
@Provides
|
||||
AdvancedPortalsCore providePortalsCore() {
|
||||
System.out.println("TEST");
|
||||
return this.portalsCore;
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ public class SpigotWorldContainer implements WorldContainer {
|
||||
public void setBlockData(PortalLocation location, byte data) {
|
||||
MaterialData matData = world.getBlockAt(location.posX, location.posY, location.posZ).getState().getData();
|
||||
if(matData instanceof Directional) {
|
||||
System.out.println("IS DIRECTIONAL");
|
||||
Directional dir = (Directional) world.getBlockAt(location.posX, location.posY, location.posZ).getState().getData();
|
||||
dir.setFacingDirection(BlockFace.NORTH);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user