Fixed bug where Snow would never drop treasures

Fixes #1820
This commit is contained in:
TfT_02
2014-01-31 23:43:32 +01:00
parent c48ccae484
commit 62b13a9a84
2 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,9 @@ public class Excavation {
case SOUL_SAND:
return TreasureConfig.getInstance().excavationFromSoulSand;
case SNOW:
return TreasureConfig.getInstance().excavationFromSnow;
default:
return new ArrayList<ExcavationTreasure>();
}