From 943f1a493b27c630e95730b385e6524643d98564 Mon Sep 17 00:00:00 2001 From: bspkrs Date: Sat, 14 Dec 2013 20:51:01 -0500 Subject: changed mod back to being Jewelrycraft and removed all Briefcase Speakers code Let's face it, they don't belong together in the same mod... I'll still help you with the SMP compatibility like you originally asked me to, but I'd rather keep my mod idea for another day instead of have it be part of a mod that I'm not really that interested in. Let me know when your code is far enough that you're ready for SMP stuff. --- common/bspkrs/briefcasespeakers/block/BlockBase.java | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 common/bspkrs/briefcasespeakers/block/BlockBase.java (limited to 'common/bspkrs/briefcasespeakers/block/BlockBase.java') diff --git a/common/bspkrs/briefcasespeakers/block/BlockBase.java b/common/bspkrs/briefcasespeakers/block/BlockBase.java deleted file mode 100644 index a895483..0000000 --- a/common/bspkrs/briefcasespeakers/block/BlockBase.java +++ /dev/null @@ -1,19 +0,0 @@ -package bspkrs.briefcasespeakers.block; - -import net.minecraft.block.Block; -import net.minecraft.block.material.Material; - -public class BlockBase extends Block -{ - public BlockBase(int par1, Material mat) - { - super(par1, mat); - } - - @Override - public Block setUnlocalizedName(String name) - { - Block r = super.setUnlocalizedName(name); - return r.setTextureName(name.replaceAll("\\.", ":")); - } -} -- cgit v1.2.3