forked from kaboomserver/extras
Rollback to 1.12.2 for now
This commit is contained in:
parent
b93c9d08e7
commit
4796393dab
4 changed files with 5 additions and 4 deletions
2
pom.xml
2
pom.xml
|
@ -8,7 +8,7 @@
|
|||
<dependency>
|
||||
<groupId>com.destroystokyo.paper</groupId>
|
||||
<artifactId>paper-api</artifactId>
|
||||
<version>1.13-R0.1-SNAPSHOT</version>
|
||||
<version>1.12.2-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -130,7 +130,7 @@ class CommandJumpscare implements CommandExecutor {
|
|||
private void createJumpscare(Player player) {
|
||||
player.spawnParticle(Particle.MOB_APPEARANCE, player.getLocation(), 4);
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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.WATER) {
|
||||
event.setCancelled(true);
|
||||
|
|
|
@ -2,7 +2,6 @@ name: Extras
|
|||
main: pw.kaboom.extras.Main
|
||||
description: Plugin that adds extra functionality to the Kaboom.pw server.
|
||||
depend: [WorldEdit]
|
||||
api-version: 1.13
|
||||
version: master
|
||||
|
||||
commands:
|
||||
|
|
Loading…
Reference in a new issue