diff --git a/src/main/java/micdoodle8/mods/galacticraft/api/galaxies/GalaxyRegistry.java b/src/main/java/micdoodle8/mods/galacticraft/api/galaxies/GalaxyRegistry.java
index 819532b90f..0f373a6469 100644
--- a/src/main/java/micdoodle8/mods/galacticraft/api/galaxies/GalaxyRegistry.java
+++ b/src/main/java/micdoodle8/mods/galacticraft/api/galaxies/GalaxyRegistry.java
@@ -95,7 +95,7 @@ public static CelestialObject getCelestialObjectFromTranslationKey(String transl
}
/**
- * Returns the CelestialBody of the given DimensionID. Iterates through, Planets, Moons & Satellites only
+ * Returns the CelestialBody of the given DimensionID. Iterates through, Planets, Moons & Satellites only
*
* @param dimensionID the DIM Id of the CelestialBody
*
@@ -296,7 +296,8 @@ public static String[] getAllTransltionKeys()
// -- DEPRECIATED METHODS -- //
/**
- * @ReplaceWith {@link GalaxyRegistry#getPlanetOrMoonFromTranslationkey(String translationKey)}
+ *
+ * Replace with {@link GalaxyRegistry#getPlanetOrMoonFromTranslationkey(String translationKey)}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.getPlanetOrMoonFromTranslationkey(String translationKey)")
@@ -306,7 +307,7 @@ public static CelestialBody getCelestialBodyFromUnlocalizedName(String unlocaliz
}
/**
- * @ReplaceWith {@link GalaxyRegistry#register(T object)}
+ * Replace with {@link GalaxyRegistry#register(Object object)}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.register(T object)")
@@ -317,7 +318,7 @@ public static boolean registerSolarSystem(SolarSystem solarSystem)
}
/**
- * @ReplaceWith {@link GalaxyRegistry#register(T object)}
+ * Replace with {@link GalaxyRegistry#register(Object object)}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.register(T object)")
@@ -328,7 +329,7 @@ public static boolean registerPlanet(Planet planet)
}
/**
- * @ReplaceWith {@link GalaxyRegistry#register(T object)}
+ * Replace with {@link GalaxyRegistry#register(Object object)}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.register(T object)")
@@ -339,7 +340,7 @@ public static boolean registerMoon(Moon moon)
}
/**
- * @ReplaceWith {@link GalaxyRegistry#register(T object)}
+ * Replace with {@link GalaxyRegistry#register(Object object)}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.register(T object)")
@@ -351,8 +352,8 @@ public static boolean registerSatellite(Satellite satellite)
/**
* Returns a read-only map containing Solar System Names and their associated Solar Systems.
- *
- * @ReplaceWith {@link GalaxyRegistry#getSolarSystems()}
+ *
+ * Replace with {@link GalaxyRegistry#getSolarSystems()}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.getSolarSystems()")
@@ -363,8 +364,8 @@ public static Map getRegisteredSolarSystems()
/**
* Returns a read-only map containing Planet Names and their associated Planets.
- *
- * @ReplaceWith {@link GalaxyRegistry#getPlanets()}
+ *
+ * Replace with {@link GalaxyRegistry#getPlanets()}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.getPlanets()")
@@ -375,8 +376,8 @@ public static Map getRegisteredPlanets()
/**
* Returns a read-only map containing Moon Names and their associated Moons.
- *
- * @ReplaceWith {@link GalaxyRegistry#getMoons()}
+ *
+ * Replace with {@link GalaxyRegistry#getMoons()}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.getMoons()")
@@ -387,8 +388,8 @@ public static Map getRegisteredMoons()
/**
* Returns a read-only map containing Satellite Names and their associated Satellite.
- *
- * @ReplaceWith {@link GalaxyRegistry#getSatellites()}
+ *
+ * Replace with {@link GalaxyRegistry#getSatellites()}
*/
@Deprecated
@ReplaceWith("GalaxyRegistry.getSatellites()")
diff --git a/src/main/java/micdoodle8/mods/galacticraft/api/recipe/CircuitFabricatorRecipes.java b/src/main/java/micdoodle8/mods/galacticraft/api/recipe/CircuitFabricatorRecipes.java
index 3fd25f074d..22fd901f0a 100644
--- a/src/main/java/micdoodle8/mods/galacticraft/api/recipe/CircuitFabricatorRecipes.java
+++ b/src/main/java/micdoodle8/mods/galacticraft/api/recipe/CircuitFabricatorRecipes.java
@@ -23,16 +23,14 @@ public class CircuitFabricatorRecipes
/**
* Input list must be array with 5 elements matching the 5 slots in the
- * machine. Use null if no item is used in the slot. Use a List
- * for Oredicted ingredients.
0: Diamond 1: Silicon 2: Silicon 3:
- * Redstone dust 4: Recipe item
+ * machine. Use null if no item is used in the slot. Use a List<net.minecraft.item.ItemStack>
+ * for Oredicted ingredients.
*
- * @param output ItemStack
+ * @param output net.minecraft.item.ItemStack
* @param inputList Object array. Must contain only null, ItemStack, or
- * List.
- *
- * @return
- */
+ * List<ItemStack>.
+ *
+ */
public static void addRecipe(ItemStack output, List
Do not reference this or test 'instance of' this in
+ * do what we need.
Do not reference this or test 'instance of' this in
* your code: if PlayerAPI is installed, GCEntityPlayerMP will not be used.
*/
public class GCEntityPlayerMP extends EntityPlayerMP
diff --git a/src/main/java/micdoodle8/mods/galacticraft/core/tick/TickHandlerServer.java b/src/main/java/micdoodle8/mods/galacticraft/core/tick/TickHandlerServer.java
index 447de93780..01d214229f 100644
--- a/src/main/java/micdoodle8/mods/galacticraft/core/tick/TickHandlerServer.java
+++ b/src/main/java/micdoodle8/mods/galacticraft/core/tick/TickHandlerServer.java
@@ -186,7 +186,7 @@ public static void scheduleNewBlockChange(int dimID, ScheduledBlockChange change
* Only use this for AIR blocks (any type of BlockAir)
*
* @param dimID
- * @param changeAdd List of
+ * @param changeAdd List of {@link micdoodle8.mods.galacticraft.core.wrappers.ScheduledBlockChange}
*/
public static void scheduleNewBlockChange(int dimID, List changeAdd)
{
diff --git a/src/main/java/micdoodle8/mods/galacticraft/core/util/ASMUtil.java b/src/main/java/micdoodle8/mods/galacticraft/core/util/ASMUtil.java
index 951329d54c..cf8b2179d9 100644
--- a/src/main/java/micdoodle8/mods/galacticraft/core/util/ASMUtil.java
+++ b/src/main/java/micdoodle8/mods/galacticraft/core/util/ASMUtil.java
@@ -160,7 +160,7 @@ public static T getFinalObject(Object object, String... fieldNames) {
* Returns the value of a private static field for a class.
*
* @param clazz The class for which the field value is to be extracted.
- * @param fieldNames A list of field names for which the value should be extracted.
+ * @param fieldName A list of field names for which the value should be extracted.
* @return The value of the provided field name.
*/
@SuppressWarnings("unchecked")
@@ -181,7 +181,7 @@ public static Optional getStaticObject(Class> clazz, String fieldName)
* @param clazz The class to find the method on.
* @param methodName The name of the method to find (used in developer environments, i.e. "getWorldTime").
* @param parameterTypes The parameter types of the method to find.
- *
+ *
* @return The method with the specified name and parameters in the given class.
*/
@Nonnull
@@ -207,7 +207,7 @@ public static Method findMethod(@Nonnull Class> clazz, @Nonnull String methodN
* @param methodName The name of the method to find (used in developer environments, i.e. "getWorldTime").
* @param methodObfName The obfuscated name of the method to find (used in obfuscated environments, i.e. "getWorldTime"). If the name you are looking for is on a class that is never obfuscated, this should be null.
* @param parameterTypes The parameter types of the method to find.
- *
+ *
* @return The method with the specified name and parameters in the given class.
*/
@Nonnull
diff --git a/src/main/java/micdoodle8/mods/galacticraft/core/util/I18nUtil.java b/src/main/java/micdoodle8/mods/galacticraft/core/util/I18nUtil.java
index 2e6bf9535f..509fdab127 100644
--- a/src/main/java/micdoodle8/mods/galacticraft/core/util/I18nUtil.java
+++ b/src/main/java/micdoodle8/mods/galacticraft/core/util/I18nUtil.java
@@ -72,7 +72,7 @@ public String translatedName(ItemStack stack)
/**
* Translates the text with key "(prefix).registry_name.key". This uses the object's registry
- * name namespace instead of {@link #modId}. Prefix is determined by the object's type.
+ * name namespace instead of modId. Prefix is determined by the object's type.
*
* @param object An {@link IForgeRegistryEntry} of some kind, such as a {@link Block} or {@link
* Item}