mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Added Ocelots to Taming XP tables.
This commit is contained in:
parent
16451550b5
commit
a83812d11a
@ -7,6 +7,9 @@ Key:
|
|||||||
! Change
|
! Change
|
||||||
- Removal
|
- Removal
|
||||||
|
|
||||||
|
Version 2.0.00-dev
|
||||||
|
+ Added Ocelots to Taming XP tables
|
||||||
|
|
||||||
Version 1.3.02
|
Version 1.3.02
|
||||||
+ Added in game guides for Mining, Excavation, and Acrobatics. Simply type /skillname ? to access them
|
+ Added in game guides for Mining, Excavation, and Acrobatics. Simply type /skillname ? to access them
|
||||||
! Changed Tree Feller to hand out 1/4 of normal XP for each JUNGLE LOG block it fells
|
! Changed Tree Feller to hand out 1/4 of normal XP for each JUNGLE LOG block it fells
|
||||||
|
2
pom.xml
2
pom.xml
@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
||||||
<artifactId>mcMMO</artifactId>
|
<artifactId>mcMMO</artifactId>
|
||||||
<version>1.3.02</version>
|
<version>2.0.00-dev</version>
|
||||||
<name>mcMMO</name>
|
<name>mcMMO</name>
|
||||||
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
|
@ -243,7 +243,7 @@ public class LoadProperties {
|
|||||||
mmossstone = readInteger("Experience.Mining.Moss_Stone", 30);
|
mmossstone = readInteger("Experience.Mining.Moss_Stone", 30);
|
||||||
|
|
||||||
mtameWolf = readInteger("Experience.Taming.Animal_Taming.Wolf", 250);
|
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);
|
mfishing = readInteger("Experience.Fishing.Base", 800);
|
||||||
|
|
||||||
|
@ -138,9 +138,7 @@ public class mcEntityListener implements Listener
|
|||||||
|
|
||||||
//Remove mob from mob spawner list
|
//Remove mob from mob spawner list
|
||||||
if(plugin.misc.mobSpawnerList.contains(x.getEntityId()))
|
if(plugin.misc.mobSpawnerList.contains(x.getEntityId()))
|
||||||
{
|
|
||||||
plugin.misc.mobSpawnerList.remove((Object)x.getEntityId());
|
plugin.misc.mobSpawnerList.remove((Object)x.getEntityId());
|
||||||
}
|
|
||||||
|
|
||||||
//Remove bleed track
|
//Remove bleed track
|
||||||
if(plugin.misc.bleedTracker.contains(x))
|
if(plugin.misc.bleedTracker.contains(x))
|
||||||
@ -311,11 +309,9 @@ public class mcEntityListener implements Listener
|
|||||||
case WOLF:
|
case WOLF:
|
||||||
xp = LoadProperties.mtameWolf;
|
xp = LoadProperties.mtameWolf;
|
||||||
break;
|
break;
|
||||||
/*
|
|
||||||
case OCELOT:
|
case OCELOT:
|
||||||
xp = LoadProperties.mtameOcelot;
|
xp = LoadProperties.mtameOcelot;
|
||||||
break;
|
break;
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PP.addXP(SkillType.TAMING, xp, player);
|
PP.addXP(SkillType.TAMING, xp, player);
|
||||||
|
Loading…
Reference in New Issue
Block a user