diff --git a/GithubChangelog.md b/GithubChangelog.md index d3a06470..d3e0edad 100644 --- a/GithubChangelog.md +++ b/GithubChangelog.md @@ -1,6 +1,12 @@ Use `/mwe` to open the config menu -- fix crash when **loading** WDR data, could prevent the game from starting, this time there should be no more crashes right ? +- Enhancements + - add `/squad formsquad` to add your teamates to the squad when in a MW pre game lobby + - fix `/names` command by using the [labymod api](https://laby.net) +- Hacker Detector + - fix KillAura (B) false flags because of players punching blocks while eating (mainly a 1.7 thing) + - fix Noslowdown & Keepsprint false flags because of players rubber banding + - remove player from report queue when you use `/wdr` or `/unwdr` on that player To install the mod you need to use forge and drop the .jar file in your `.minecraft\mods` folder. See more information about installation [here](https://github.com/Alexdoru/MegaWallsEnhancements#installation). diff --git a/build.gradle b/build.gradle index b117e67b..3df827ff 100644 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ buildscript { } apply plugin: 'net.minecraftforge.gradle.forge' -version = "3.6.2" +version = "3.6.3" group = "fr.alexdoru" archivesBaseName = "[1.8.9] MegaWallsEnhancements" diff --git a/src/main/java/fr/alexdoru/megawallsenhancementsmod/MegaWallsEnhancementsMod.java b/src/main/java/fr/alexdoru/megawallsenhancementsmod/MegaWallsEnhancementsMod.java index 1f157b57..bf2207a0 100644 --- a/src/main/java/fr/alexdoru/megawallsenhancementsmod/MegaWallsEnhancementsMod.java +++ b/src/main/java/fr/alexdoru/megawallsenhancementsmod/MegaWallsEnhancementsMod.java @@ -38,7 +38,7 @@ public class MegaWallsEnhancementsMod { public static final String modid = "mwenhancements"; public static final String modName = "MegaWallsEnhancements"; - public static final String version = "3.6.2"; + public static final String version = "3.6.3"; public static final Logger logger = LogManager.getLogger(modName); public static File jarFile;