mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-05 19:45:49 +02:00
Update to Minecraft 1.14.3-pre4
By: md_5 <git@md-5.net>
This commit is contained in:
parent
8cd55c2837
commit
073d435536
paper-api
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.14.2-R0.1-SNAPSHOT</version>
|
<version>1.14.3-pre4-SNAPSHOT</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>Bukkit</name>
|
<name>Bukkit</name>
|
||||||
|
@ -116,6 +116,11 @@ public final class GameRule<T> {
|
|||||||
*/
|
*/
|
||||||
public static final GameRule<Boolean> SPECTATORS_GENERATE_CHUNKS = new GameRule<>("spectatorsGenerateChunks", Boolean.class);
|
public static final GameRule<Boolean> SPECTATORS_GENERATE_CHUNKS = new GameRule<>("spectatorsGenerateChunks", Boolean.class);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether pillager raids are enabled or not.
|
||||||
|
*/
|
||||||
|
public static final GameRule<Boolean> DISABLE_RAIDS = new GameRule<>("disableRaids", Boolean.class);
|
||||||
|
|
||||||
// Numerical rules
|
// Numerical rules
|
||||||
/**
|
/**
|
||||||
* How often a random block tick occurs (such as plant growth, leaf decay,
|
* How often a random block tick occurs (such as plant growth, leaf decay,
|
||||||
|
@ -48,6 +48,8 @@ public final class MemoryKey<T> implements Keyed {
|
|||||||
public static final MemoryKey<Location> HOME = new MemoryKey<>(NamespacedKey.minecraft("home"), Location.class);
|
public static final MemoryKey<Location> HOME = new MemoryKey<>(NamespacedKey.minecraft("home"), Location.class);
|
||||||
public static final MemoryKey<Location> MEETING_POINT = new MemoryKey<>(NamespacedKey.minecraft("meeting_point"), Location.class);
|
public static final MemoryKey<Location> MEETING_POINT = new MemoryKey<>(NamespacedKey.minecraft("meeting_point"), Location.class);
|
||||||
public static final MemoryKey<Location> JOB_SITE = new MemoryKey<>(NamespacedKey.minecraft("job_site"), Location.class);
|
public static final MemoryKey<Location> JOB_SITE = new MemoryKey<>(NamespacedKey.minecraft("job_site"), Location.class);
|
||||||
|
public static final MemoryKey<Long> LAST_SLEPT = new MemoryKey<>(NamespacedKey.minecraft("last_slept"), Long.class);
|
||||||
|
public static final MemoryKey<Long> LAST_WORKED_AT_POI = new MemoryKey<>(NamespacedKey.minecraft("last_worked_at_poi"), Long.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a {@link MemoryKey} by a {@link NamespacedKey}.
|
* Returns a {@link MemoryKey} by a {@link NamespacedKey}.
|
||||||
|
Loading…
Reference in New Issue
Block a user