1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-04-02 09:46:24 +02:00

Fishing command did an oopsie

This commit is contained in:
nossr50 2019-02-06 03:01:43 -08:00
parent 63d3a328c4
commit 98e6400dd8
5 changed files with 12 additions and 3 deletions

@ -7,7 +7,8 @@ Key:
! Change ! Change
- Removal - Removal
Version 2.2.0 Version 2.1.10
Fishing command did an oopsie
Endstone now gives the same XP as Stone (update your experience.yml) Endstone now gives the same XP as Stone (update your experience.yml)
Version 2.1.9 Version 2.1.9

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.nossr50.mcMMO</groupId> <groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId> <artifactId>mcMMO</artifactId>
<version>2.2.0-SNAPSHOT</version> <version>2.1.10-SNAPSHOT</version>
<name>mcMMO</name> <name>mcMMO</name>
<url>https://github.com/mcMMO-Dev/mcMMO</url> <url>https://github.com/mcMMO-Dev/mcMMO</url>
<scm> <scm>

@ -0,0 +1,4 @@
package com.gmail.nossr50.api;
public class McMMOClassLoader {
}

@ -0,0 +1,4 @@
package com.gmail.nossr50.api;
public enum MinecraftVersion {
}

@ -112,7 +112,7 @@ public class FishingCommand extends SkillCommand {
double luckyModifier = Permissions.lucky(player, PrimarySkillType.FISHING) ? 1.333D : 1.0D; double luckyModifier = Permissions.lucky(player, PrimarySkillType.FISHING) ? 1.333D : 1.0D;
biteChance = percent.format(String.valueOf((rawBiteChance * 100.0D) * luckyModifier)); biteChance = percent.format((rawBiteChance * 100.0D) * luckyModifier);
} }
} }