1.7.2 is almost ready!

This commit is contained in:
WayofTime 2014-02-23 21:25:10 -05:00
parent d5ba110323
commit fa6ccb83a1
21 changed files with 231 additions and 69 deletions

View file

@ -45,7 +45,8 @@ public class SpellFireBurst extends HomSpell
if (!par2World.isRemote)
{
//par2World.spawnEntityInWorld(new EnergyBlastProjectile(par2World, par3EntityPlayer, damage));
par2World.spawnEntityInWorld(new FireProjectile(par2World, par3EntityPlayer, 7));
FireProjectile proj = new FireProjectile(par2World, par3EntityPlayer, 7);
par2World.spawnEntityInWorld(proj);
}
return par1ItemStack;