Rollback to 1.12.2 for now

This commit is contained in:
mathias 2018-08-06 04:15:07 +03:00
parent b93c9d08e7
commit 4796393dab
4 changed files with 5 additions and 4 deletions

View file

@ -8,7 +8,7 @@
<dependency> <dependency>
<groupId>com.destroystokyo.paper</groupId> <groupId>com.destroystokyo.paper</groupId>
<artifactId>paper-api</artifactId> <artifactId>paper-api</artifactId>
<version>1.13-R0.1-SNAPSHOT</version> <version>1.12.2-R0.1-SNAPSHOT</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>

View file

@ -130,7 +130,7 @@ class CommandJumpscare implements CommandExecutor {
private void createJumpscare(Player player) { private void createJumpscare(Player player) {
player.spawnParticle(Particle.MOB_APPEARANCE, player.getLocation(), 4); player.spawnParticle(Particle.MOB_APPEARANCE, player.getLocation(), 4);
for (int i = 0; i < 10; ++i) { for (int i = 0; i < 10; ++i) {
player.playSound(player.getLocation(), Sound.ENTITY_ENDERMAN_SCREAM, 1, 0); player.playSound(player.getLocation(), Sound.ENTITY_ENDERMEN_SCREAM, 1, 0);
} }
} }

View file

@ -245,7 +245,9 @@ class Events implements Listener {
} }
} }
if (block.getType() == Material.FARMLAND || if (block.getType() == Material.SOIL ||
block.getType() == Material.STATIONARY_LAVA ||
block.getType() == Material.STATIONARY_WATER ||
block.getType() == Material.LAVA || block.getType() == Material.LAVA ||
block.getType() == Material.WATER) { block.getType() == Material.WATER) {
event.setCancelled(true); event.setCancelled(true);

View file

@ -2,7 +2,6 @@ name: Extras
main: pw.kaboom.extras.Main main: pw.kaboom.extras.Main
description: Plugin that adds extra functionality to the Kaboom.pw server. description: Plugin that adds extra functionality to the Kaboom.pw server.
depend: [WorldEdit] depend: [WorldEdit]
api-version: 1.13
version: master version: master
commands: commands: