1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

[CI skip] Fixed javadocs

This commit is contained in:
TheBusyBiscuit 2022-01-18 20:03:52 +01:00
parent e02eedd940
commit dd16b7c84c
4 changed files with 4 additions and 4 deletions

View File

@ -112,7 +112,7 @@ public class GPSNetwork {
SlimefunItem item = BlockStorage.check(l);
if (item instanceof GPSTransmitter) {
level += ((GPSTransmitter) item).getMultiplier(Math.max(l.getBlockY(),0));
level += ((GPSTransmitter) item).getMultiplier(Math.max(l.getBlockY(), 0));
}
}

View File

@ -40,7 +40,7 @@ public class Talisman extends SlimefunItem {
protected static final ItemGroup TALISMANS_ITEMGROUP = new ItemGroup(new NamespacedKey(Slimefun.instance(), "talismans"), new CustomItemStack(SlimefunItems.COMMON_TALISMAN, "&7Talismans - &aTier I"), 2);
private static final String WIKI_PAGE = "Talismans";
private final SlimefunItemStack enderTalisman;
protected final String suffix;

View File

@ -1,6 +1,6 @@
/**
* This package holds implementations of {@link io.github.thebusybiscuit.slimefun4.api.items.ItemSetting} that are for
* very specific {@link me.mrCookieSlime.Slimefun.Objects.SlimefunItem.SlimefunItem SlimefunItems} and generally not
* very specific {@link io.github.thebusybiscuit.slimefun4.api.items.SlimefunItem SlimefunItems} and generally not
* very useful out of their context.
*/
package io.github.thebusybiscuit.slimefun4.implementation.settings;

View File

@ -19,7 +19,7 @@ public final class PatternUtils {
private PatternUtils() {}
public static final Pattern SLASH_SEPARATOR = Pattern.compile(" / ");
public static final Pattern YAML_ENTRY = Pattern.compile("[a-z0-9_-]+:.*");
public static final Pattern MINECRAFT_NAMESPACEDKEY = Pattern.compile("minecraft:[a-z0-9/._-]+");