Fixed pet tag price.

This commit is contained in:
Jonathan Williams 2014-08-09 09:49:00 -05:00
parent 43862ea6bf
commit e50c179e8d
3 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ public class PetTagPage extends ShopPageBase<CosmeticManager, CosmeticShop>
return;
}
PetExtra tag = new PetExtra("Rename " + _pet.GetName() + " to " + _tagName, Material.NAME_TAG, 1000);
PetExtra tag = new PetExtra("Rename " + _pet.GetName() + " to " + _tagName, Material.NAME_TAG, 100);
_pet.setDisplayName(C.cGreen + "Purchase " + _tagName);

View File

@ -20,7 +20,7 @@ public class PetExtra extends SalesPackageBase
_name = name;
_material = material;
CurrencyCostMap.put(CurrencyType.Gems, cost);
CurrencyCostMap.put(CurrencyType.Coins, cost);
KnownPackage = false;
OneTimePurchaseOnly = false;

View File

@ -60,7 +60,7 @@ public class PetFactory
private void CreatePetExtras()
{
_petExtras.put(Material.SIGN, new PetExtra("Name Tag", Material.NAME_TAG, 1000));
_petExtras.put(Material.SIGN, new PetExtra("Name Tag", Material.NAME_TAG, 100));
List<PetExtraToken> petExtraTokens = new ArrayList<PetExtraToken>();