mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 14:30:17 +01:00
remove test plugin diff accidentally committed
This commit is contained in:
parent
4c6ea8416b
commit
c31d95eccb
2 changed files with 0 additions and 25 deletions
|
@ -1,9 +1,5 @@
|
||||||
package io.papermc.testplugin;
|
package io.papermc.testplugin;
|
||||||
|
|
||||||
import io.papermc.paper.registry.RegistryAccess;
|
|
||||||
import io.papermc.paper.registry.RegistryKey;
|
|
||||||
import org.bukkit.Art;
|
|
||||||
import org.bukkit.Registry;
|
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|
||||||
|
@ -14,10 +10,6 @@ public final class TestPlugin extends JavaPlugin implements Listener {
|
||||||
this.getServer().getPluginManager().registerEvents(this, this);
|
this.getServer().getPluginManager().registerEvents(this, this);
|
||||||
|
|
||||||
// io.papermc.testplugin.brigtests.Registration.registerViaOnEnable(this);
|
// io.papermc.testplugin.brigtests.Registration.registerViaOnEnable(this);
|
||||||
|
|
||||||
final Registry<Art> registry = RegistryAccess.registryAccess().getRegistry(RegistryKey.PAINTING_VARIANT);
|
|
||||||
final Art art = registry.get(TestPluginBootstrap.NEW);
|
|
||||||
System.out.println(art.getKey());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,30 +2,13 @@ package io.papermc.testplugin;
|
||||||
|
|
||||||
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
|
import io.papermc.paper.plugin.bootstrap.BootstrapContext;
|
||||||
import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
|
import io.papermc.paper.plugin.bootstrap.PluginBootstrap;
|
||||||
import io.papermc.paper.registry.TypedKey;
|
|
||||||
import io.papermc.paper.registry.event.RegistryEvents;
|
|
||||||
import io.papermc.paper.registry.keys.PaintingVariantKeys;
|
|
||||||
import net.kyori.adventure.key.Key;
|
|
||||||
import org.bukkit.Art;
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
import static net.kyori.adventure.text.Component.text;
|
|
||||||
|
|
||||||
public class TestPluginBootstrap implements PluginBootstrap {
|
public class TestPluginBootstrap implements PluginBootstrap {
|
||||||
|
|
||||||
static final TypedKey<Art> NEW = PaintingVariantKeys.create(Key.key("test:test"));
|
|
||||||
@Override
|
@Override
|
||||||
public void bootstrap(@NotNull BootstrapContext context) {
|
public void bootstrap(@NotNull BootstrapContext context) {
|
||||||
// io.papermc.testplugin.brigtests.Registration.registerViaBootstrap(context);
|
// io.papermc.testplugin.brigtests.Registration.registerViaBootstrap(context);
|
||||||
|
|
||||||
context.getLifecycleManager().registerEventHandler(RegistryEvents.PAINTING_VARIANT.freeze(), event -> {
|
|
||||||
event.registry().register(NEW, builder -> {
|
|
||||||
builder.assetId(Key.key("wind"))
|
|
||||||
.author(text("ME"))
|
|
||||||
.width(2)
|
|
||||||
.height(2);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue