This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"conditions": [ | |
{ | |
"type": "mod_loaded", | |
"mod": "minecraft" | |
} | |
], | |
"type": "minecraft:crafting_shaped", | |
"group": "torchmaster", | |
"pattern": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package baubles.common; | |
import baubles.api.BaubleType; | |
import baubles.api.IBauble; | |
import baubles.api.cap.BaubleItem; | |
import baubles.api.cap.BaublesCapabilities; | |
import baubles.common.Baubles; | |
import net.minecraft.entity.EntityLivingBase; | |
import net.minecraft.init.Items; | |
import net.minecraft.item.ItemStack; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.xalcon.ecotec.experimental; | |
import net.minecraft.tileentity.TileEntity; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
@Retention(RetentionPolicy.RUNTIME) // this means the annotation is available at runtime and will not be stripped by the compiler | |
public @interface HasTileEntity | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
modsDir=mods/*.jar | |
repoDir=repo/mods | |
for file in $modsDir | |
do | |
mcmodInfo=`unzip -p "$file" mcmod.info 2> /dev/null` | |
if [[ $? -ne 0 ]]; then | |
echo "$file has no mcmeta.info" | |
continue; |
NewerOlder