Package com.flansmod.common.teams

Examples of com.flansmod.common.teams.EntityGunItem


    // Drop gun
    if(!worldObj.isRemote)
    {
      if(TeamsManager.weaponDrops == 2)
      {
        EntityGunItem gunEntity = new EntityGunItem(worldObj, posX, posY, posZ, new ItemStack(type.getItem()), Arrays.asList(ammo));
        worldObj.spawnEntityInWorld(gunEntity);
      }
      else if(TeamsManager.weaponDrops == 1)
      {
        dropItem(type.getItem(), 1);
View Full Code Here

TOP

Related Classes of com.flansmod.common.teams.EntityGunItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.