Update to Minecraft 1.17

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2021-06-11 15:00:00 +10:00
parent 2e1a3720cf
commit 153752dfac
44 changed files with 3379 additions and 958 deletions

View File

@@ -0,0 +1,25 @@
package org.bukkit.entity;
/**
* A Glow Squid.
*/
public interface GlowSquid extends Squid {
/**
* Get the number of dark ticks remaining for this squid.
*
* Bravo Six will go dark for 100 ticks (5 seconds) if damaged.
*
* @return dark ticks remaining
*/
int getDarkTicksRemaining();
/**
* Sets the number of dark ticks remaining for this squid.
*
* Bravo Six will go dark for 100 ticks (5 seconds) if damaged.
*
* @param darkTicksRemaining dark ticks remaining
*/
void setDarkTicksRemaining(int darkTicksRemaining);
}