Added Ocelots to Taming XP tables.

This commit is contained in:
GJ
2012-03-04 03:07:09 -05:00
parent 16451550b5
commit a83812d11a
4 changed files with 5 additions and 6 deletions

View File

@ -243,7 +243,7 @@ public class LoadProperties {
mmossstone = readInteger("Experience.Mining.Moss_Stone", 30);
mtameWolf = readInteger("Experience.Taming.Animal_Taming.Wolf", 250);
mtameOcelot = readInteger("Experience.Taming.Animal_Taming.Wolf", 500);
mtameOcelot = readInteger("Experience.Taming.Animal_Taming.Ocelot", 500);
mfishing = readInteger("Experience.Fishing.Base", 800);

View File

@ -138,9 +138,7 @@ public class mcEntityListener implements Listener
//Remove mob from mob spawner list
if(plugin.misc.mobSpawnerList.contains(x.getEntityId()))
{
plugin.misc.mobSpawnerList.remove((Object)x.getEntityId());
}
//Remove bleed track
if(plugin.misc.bleedTracker.contains(x))
@ -311,11 +309,9 @@ public class mcEntityListener implements Listener
case WOLF:
xp = LoadProperties.mtameWolf;
break;
/*
case OCELOT:
xp = LoadProperties.mtameOcelot;
break;
*/
}
PP.addXP(SkillType.TAMING, xp, player);