Created NPC types and created the config needed to load them

This commit is contained in:
2023-09-21 00:18:10 +02:00
parent 816af4d421
commit 140a0f0e97
18 changed files with 760 additions and 7 deletions
@@ -64,7 +64,7 @@ public abstract class Fish {
* @return points based on the length and rarity of this fish
*/
public int getPoints(float length) {
return Math.round(Config.RARITY_MULTIPLIERS.multiplierMap.get(getRarity()) * length);
return Math.round(Config.RARITY_MULTIPLIERS.MULTIPLIER_MAP.get(getRarity()) * length);
}
}