Skip to content

Commit

Permalink
Nerf Herbalism XP from Tall Grass
Browse files Browse the repository at this point in the history
  • Loading branch information
TfT-02 committed Mar 29, 2014
1 parent c744974 commit 70a1eea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,13 @@ public int getFlowerAndGrassXp(MaterialData data) {
else if (type == Material.LONG_GRASS) {
switch (((LongGrass) data).getSpecies()) {
case DEAD:
return config.getInt("Experience.Herbalism.Dead_Bush", 100);
return config.getInt("Experience.Herbalism.Dead_Bush", 30);

case FERN_LIKE:
return config.getInt("Experience.Herbalism.Small_Fern", 100);
return config.getInt("Experience.Herbalism.Small_Fern", 10);

case NORMAL:
return config.getInt("Experience.Herbalism.Small_Grass", 100);
return config.getInt("Experience.Herbalism.Small_Grass", 10);

default:
return 0;
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Experience:
Carrot: 50
Cocoa: 30
Crops: 50
Dead_Bush: 100
Dead_Bush: 30
Lilac: 50
Melon_Block: 20
Nether_Warts: 50
Expand All @@ -129,8 +129,8 @@ Experience:
Red_Mushroom: 150
Red_Tulip: 150
Rose_Bush: 50
Small_Fern: 100
Small_Grass: 100
Small_Fern: 10
Small_Grass: 10
Sugar_Cane_Block: 30
Sunflower: 50
Tall_Grass: 50
Expand Down

0 comments on commit 70a1eea

Please sign in to comment.