Update wilderness.rb

When you entered the wilderness it would start at level 0
This commit is contained in:
WizardJesse1
2015-12-29 17:27:30 -05:00
parent ba1537a9e4
commit e1981be0db
+1 -1
View File
@@ -19,7 +19,7 @@ end
# Determines the wilderness level for the specified player's position
def wilderness_level(player)
((player.position.y - 3520) / 8).ceil
((player.position.y - 3520) / 8).ceil + 1
end
area_action :wilderness_level do