This commit is contained in:
nossr50 2019-08-05 10:43:05 -04:00
parent 11409c07c0
commit 7853efc63d
4 changed files with 2 additions and 4 deletions

View File

@ -1,10 +1,10 @@
Version 2.1.100 Version 2.1.100
Updated Russian locale (thanks myfbone!)
Fixed a bug where plants could double drop when the skill was not yet unlocked Fixed a bug where plants could double drop when the skill was not yet unlocked
Fixed a bug where plants ALWAYS double dropped Fixed a bug where plants ALWAYS double dropped
mcnotify command now checks that it's being executed by a player mcnotify command now checks that it's being executed by a player
Fixed some concurrency concerns around BleedTasks Fixed some concurrency concerns around BleedTasks
Fixed an NPE that may occur with random chances on a player without loaded data Fixed an NPE that may occur with random chances on a player without loaded data
Updated Russian locale (thanks myfbone!)
Version 2.1.99 Version 2.1.99
MASSIVE update to the Russian locale (ru) credit to myfbone MASSIVE update to the Russian locale (ru) credit to myfbone

View File

@ -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.1.100-SNAPSHOT</version> <version>2.1.100</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>

View File

@ -9,7 +9,6 @@ import com.gmail.nossr50.util.skills.CombatUtils;
import com.gmail.nossr50.util.skills.ParticleEffectUtils; import com.gmail.nossr50.util.skills.ParticleEffectUtils;
import com.gmail.nossr50.util.sounds.SoundManager; import com.gmail.nossr50.util.sounds.SoundManager;
import com.gmail.nossr50.util.sounds.SoundType; import com.gmail.nossr50.util.sounds.SoundType;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.entity.LivingEntity; import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;

View File

@ -19,7 +19,6 @@ import com.gmail.nossr50.runnables.skills.HerbalismBlockUpdaterTask;
import com.gmail.nossr50.skills.SkillManager; import com.gmail.nossr50.skills.SkillManager;
import com.gmail.nossr50.util.*; import com.gmail.nossr50.util.*;
import com.gmail.nossr50.util.player.NotificationManager; import com.gmail.nossr50.util.player.NotificationManager;
import com.gmail.nossr50.util.player.UserManager;
import com.gmail.nossr50.util.random.RandomChanceSkillStatic; import com.gmail.nossr50.util.random.RandomChanceSkillStatic;
import com.gmail.nossr50.util.random.RandomChanceUtil; import com.gmail.nossr50.util.random.RandomChanceUtil;
import com.gmail.nossr50.util.skills.RankUtils; import com.gmail.nossr50.util.skills.RankUtils;