Browse Source

Fixed Excavation not awarding XP unless you found a treasure.

GJ 13 năm trước cách đây
mục cha
commit
c4a0ae64aa
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/main/java/com/gmail/nossr50/skills/Excavation.java

+ 1 - 1
src/main/java/com/gmail/nossr50/skills/Excavation.java

@@ -90,7 +90,7 @@ public class Excavation
 		PlayerProfile PP = Users.getProfile(player);
 		int skillLevel = PP.getSkillLevel(SkillType.EXCAVATION);
     	ArrayList<ItemStack> is = new ArrayList<ItemStack>();
-    	int xp = 0;
+    	int xp = LoadProperties.mbase;
     	
     	switch(type)
     	{