Fix modid references in API javadoc

This commit is contained in:
Nicholas Ignoffo 2017-02-12 01:36:01 -08:00
parent f135dab7ba
commit 7f50780d2f

View file

@ -30,6 +30,7 @@ import java.util.Map;
* <li>{@link #addToTeleposerBlacklist(BlockStack)}</li> * <li>{@link #addToTeleposerBlacklist(BlockStack)}</li>
* <li>{@link #blacklistFromGreenGrove(Block)}</li> * <li>{@link #blacklistFromGreenGrove(Block)}</li>
* <li>{@link #setEntitySacrificeValue(Class, int)}</li> * <li>{@link #setEntitySacrificeValue(Class, int)}</li>
* <li>{@link #addAltarComponent(IBlockState, EnumAltarComponent)}</li>
* </ul> * </ul>
*/ */
public class BloodMagicAPI public class BloodMagicAPI
@ -130,9 +131,9 @@ public class BloodMagicAPI
* be changed via Configuration files. * be changed via Configuration files.
* *
* IMC: * IMC:
* {@code FMLInterModComs.sendMessage("BloodMagic", "teleposerBlacklist", ItemStack)} * {@code FMLInterModComs.sendMessage("bloodmagic", "teleposerBlacklist", ItemStack)}
* Example: * Example:
* {@code FMLInterModComs.sendMessage("BloodMagic", "teleposerBlacklist", new ItemStack(Blocks.bedrock))} * {@code FMLInterModComs.sendMessage("bloodmagic", "teleposerBlacklist", new ItemStack(Blocks.bedrock))}
* *
* @param blockStack * @param blockStack
* - The BlockStack to blacklist. * - The BlockStack to blacklist.
@ -172,9 +173,9 @@ public class BloodMagicAPI
* cannot be changed via Configuration files. * cannot be changed via Configuration files.
* *
* IMC: * IMC:
* {@code FMLInterModComs.sendMessage("BloodMagic", "transpositionBlacklist", ItemStack)} * {@code FMLInterModComs.sendMessage("bloodmagic", "transpositionBlacklist", ItemStack)}
* Example: * Example:
* {@code FMLInterModComs.sendMessage("BloodMagic", "transpositionBlacklist", new ItemStack(Blocks.bedrock))} * {@code FMLInterModComs.sendMessage("bloodmagic", "transpositionBlacklist", new ItemStack(Blocks.bedrock))}
* *
* @param blockStack * @param blockStack
* - The BlockStack to blacklist. * - The BlockStack to blacklist.
@ -218,9 +219,9 @@ public class BloodMagicAPI
* The default value for any unset Entity is 500 LP per sacrifice. * The default value for any unset Entity is 500 LP per sacrifice.
* *
* IMC: * IMC:
* {@code FMLInterModComs.sendMessage("BloodMagic", "sacrificeValue", "ClassName;Value")} * {@code FMLInterModComs.sendMessage("bloodmagic", "sacrificeValue", "ClassName;Value")}
* Example: * Example:
* {@code FMLInterModComs.sendMessage("BloodMagic", "sacrificeValue", "EntityVillager;2000")} * {@code FMLInterModComs.sendMessage("bloodmagic", "sacrificeValue", "EntityVillager;2000")}
* *
* @param entityClass * @param entityClass
* - The class of the entity to blacklist. * - The class of the entity to blacklist.
@ -253,9 +254,9 @@ public class BloodMagicAPI
* Blacklists a block from the Green Grove Ritual and Sigil. * Blacklists a block from the Green Grove Ritual and Sigil.
* *
* IMC: * IMC:
* {@code FMLInterModComs.sendMessage("BloodMagic", "greenGroveBlacklist", "domain:name")} * {@code FMLInterModComs.sendMessage("bloodmagic", "greenGroveBlacklist", "domain:name")}
* Example: * Example:
* {@code FMLInterModComs.sendMessage("BloodMagic", "greenGroveBlacklist", "minecraft:wheat")} * {@code FMLInterModComs.sendMessage("bloodmagic", "greenGroveBlacklist", "minecraft:wheat")}
* *
* @param block * @param block
* - Block to blacklist * - Block to blacklist
@ -271,9 +272,9 @@ public class BloodMagicAPI
* {@link WayofTime.bloodmagic.api.altar.IAltarComponent} on the block. * {@link WayofTime.bloodmagic.api.altar.IAltarComponent} on the block.
* *
* IMC: * IMC:
* {@code FMLInterModComs.sendMessage("BloodMagic", "altarComponent", "domain:name:meta:component")} * {@code FMLInterModComs.sendMessage("bloodmagic", "altarComponent", "domain:name:meta:component")}
* Example: * Example:
* {@code FMLInterModComs.sendMessage("BloodMagic", "altarComponent", "minecraft:glowstone:0:GLOWSTONE")} * {@code FMLInterModComs.sendMessage("bloodmagic", "altarComponent", "minecraft:glowstone:0:GLOWSTONE")}
* *
* @param state * @param state
* - The IBlockState for this component * - The IBlockState for this component