mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2024-11-01 01:42:18 +00:00
0ab240cd93
## Fixes * Fixed odd interactions between `Bloodbending` and `AvatarState`. * You can no longer be bloodbent while in `AvatarState` and going into the `AvatarState` while being bloodbent will break you free. * Fixed various errors in `Bloodbending`. * Fixed `SubElements` being saved incorrectly in the database. * Fixed a few cases where `Surge` would cause flooding. * Fixed various NoCheatPlus exemptions in our `DamageHandler`. (Thanks, RoboMWM) * Fixed ProjectKorra fire tick damage overriding other plugins fire tick damage. * Fixed `FireSpin` working underwater. * Fixed `EarthArmor` not properly obeying its cooldown. * Fixed `Combo Abilities` being displayed in `/pk display <Element>`. * Fixed `Extraction` cooldown being applied when the ability couldn't start. * Fixed `EarthTunnel` cooldown being applied when the ability couldn't start. * Fixed `IceSpike` field functionality not activating on `PhaseChange` blocks. * Fixed `FireWheel` hit location if used while looking down. * Fixed `Lightning` paralyze functionality. * Fixed `DensityShift` causing fall damage if used on other `DensityShift` blocks. * Fixed `Flight` cooldown being applied when the ability couldn't start. * Fixed `Flight` deactivating if used while on the ground. * Fixed `RapidPunch` cooldown being applied when the ability couldn't start. * Fixed `WaterArms` not returning water sources to bottles. * Fixed `WaterArms` not grabbing sources correctly. * Fixed `CollisionManager` attempting to detect collisions between abilities in different worlds. (Thanks, plushmonkey) * Fixed `CollisionManager` not resetting when a new manager is created. * Fixed `JetBlaze` and `JetBlast` not overriding `FireJet` duration. * Fixed `PhaseChange` not being able to melt snow blocks. * Fixed `FastSwim` being able to be used on a `Catapult` slot. * Fixed `FireManipulation` cooldown. * Fixed `Collapse` and `RaiseEarth`not working in `AvatarState`. * Fixed Waterbending causing concrete powder to harden. * Fixed `MetalClips` magnetize not pulling iron ingots if players had them in their hand. * Fixed `MetalClips` not disabling passives such as `FastSwim` on its targets. * Fixed `MetalClips` armor absorbing damage. * Fixed `MetalClips` magnetize not pulling if the launching portion of the move is on cooldown. * Fixed `MetalClips` not dropping iron ingots once a held target is killed. * Fixed `MetalClips` duplicating iron ingots by repeatedly hitting and pulling entities. * Fixed `MetalClips` duplicating iron ingots by hitting blocks. * Fixed addon Passive abilities not registering. * Fixed `/pk help <Element>` displaying incorrect/old links. * Fixed `/pk help <Element/Combo>` being case sensitive. * Fixed `/pk help` not allowing players to auto tab all non-hidden abilities. * Fixed `IllegalArgumentException` being thrown if server owners put an incorrect `ChatColor` for the `Chat.Branding.Color` value in `language.yml`. * Fixed `EarthArmor` allowing players to use `FastSwim` while the armor is activated. * Fixed incorrect cancellation of `BlockBreakEvent` when players bending is toggled off. * Fixed multiple instances of the same `CoreAbility` being present in auto tabbing due to certain move functionalities being split up between files. * Fixed Passive abilities and Combo abilities showing up in `/pk bind <Ability>` auto tabbing. * Fixed `WaterWave` and `WaterSpout` cohesive movement. * Fixed `DamageHandler` applying `DamageModifier.ARMOR` where it is not applicable. * Fixed `/pk check` command URL. * Fixed Passive abilities breaking when choosing an element while bending is toggled. * Fixed `WaterBubble` removing blocks placed by players while the ability is active. * Fixed potential infinite loop in `EarthGrab`. * Fixed `AirScooter` not disabling when a player would sneak. ## Additions * Added cooldown capability to `AirShield`, `AirSpout`, `Tornado`, `FastSwim`, `WaterBubble`, `EarthTunnel`, `AcrobaticStance`, and `WarriorStance`. * Added the clickable ProjectKorra branding message to the `/pk help` and `/pk who` commands. * Added `radius` config option to `EarthGrab`. * Added AvatarState configuration options for `IceSpike`, `IceBlast`, `Torrent`, `OctopusForm`, `WallOfFire`, `WaterSpout`, and all stock Combos. * Added aesthetic donation perk servers can give to their players in the `/pk who <Player>` command via the `bending.donor` permission. * Added config option for the lightning bending sound and lava bending sound. * Added `Pitch` and `Volume` config options for all configurable sounds. * Added identifiers on Addon Abilities in `/pk help <Ability>` and `/pk display`. ## General Changes * Reduced default config values of `AvatarState` ability modifiers. * Changed the way abilities display in `/pk help <Ability>` * Abilities now display whether they are Addons or not. * Abilities now display whether they are Combos or Passives. * Addon Abilities display their author and version. * Improved `AirScooter` behavior. It isn't perfect yet, but it is better. * Changed `EarthArmor` so it now breaks when a player teleports. * Changed cobblestone and obsidian created by `AirBlast` to `TempBlocks`. * Changed `/pk add Avatar` to add all four main elements. ## API Changes * Added `RevertTask` which runs whenever `TempBlock#revertBlock()` is called. * Moved `BendingPlayer` creation to a separate thread. * Changed initial `BendingPlayer` database storage to insert default values. * Improved `CollisionManager` performance by removing unnecessary detections. * Put logic in place to remove ability instances causing exceptions without breaking all other running abilities. (Thanks, PhanaticD) * Changed `PassiveManager` storage so Passive abilities are be stored by name/class instead of by `Element`. * Removed `PassiveManager#getPassivesByElement()`. * Added `CoreAbility#unloadAbility(Class clazz)` to unload an ability from a server. * Added `CoreAbility#getAddonPlugins()` to get the names and paths of all currently loaded addon plugins. Returned format: `<plugin name>::<abilities path>` * Changed `/pk reload` to add support for addon plugin reloading. ## Removals * Removed the Minecraft version from the `/pk version` command. * Removed `SandSpout`. * Removed `SandRun` remnant from `EarthPassive`. * Removed `AirBlast` collisions with other basic moves.
192 lines
6 KiB
XML
192 lines
6 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>projectkorra</artifactId>
|
|
<version>1.8.5</version>
|
|
<packaging>jar</packaging>
|
|
<name>ProjectKorra</name>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Spigot API -->
|
|
<!-- <dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/spigot-1.12-R0.1-SNAPSHOT.jar</systemPath>
|
|
</dependency> -->
|
|
<!-- Factions -->
|
|
<dependency>
|
|
<groupId>com.massivecraft</groupId>
|
|
<artifactId>factions</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Factions 2.7.5.jar</systemPath>
|
|
</dependency>
|
|
<!-- GriefPrevention -->
|
|
<dependency>
|
|
<groupId>me.ryanhamshire</groupId>
|
|
<artifactId>GriefPrevention</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/GriefPrevention 10.5.3.jar</systemPath>
|
|
</dependency>
|
|
<!-- LWC -->
|
|
<dependency>
|
|
<groupId>com.griefcraft</groupId>
|
|
<artifactId>lwc</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/LWC.jar</systemPath>
|
|
</dependency>
|
|
<!-- MassiveCore -->
|
|
<dependency>
|
|
<groupId>com.massivecraft</groupId>
|
|
<artifactId>massivecore</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/MassiveCore 2.7.5.jar</systemPath>
|
|
</dependency>
|
|
<!-- NoCheatPlus -->
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>nocheatplus</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/NoCheatPlus.jar</systemPath>
|
|
</dependency>
|
|
<!-- PreciousStones -->
|
|
<dependency>
|
|
<groupId>net.sacredlabyrinth.Phaed</groupId>
|
|
<artifactId>PreciousStones</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/PreciousStones 9.7.1.jar</systemPath>
|
|
</dependency>
|
|
<!-- PK RPG -->
|
|
<dependency>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>rpg</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/ProjectKorraRPG.jar</systemPath>
|
|
</dependency>
|
|
<!-- PK ITEMS -->
|
|
<dependency>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>items</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/ProjectKorraItems.jar</systemPath>
|
|
</dependency>
|
|
<!-- PK Spirits -->
|
|
<dependency>
|
|
<groupId>com.projectkorra</groupId>
|
|
<artifactId>spirits</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/ProjectKorraSpirits.jar</systemPath>
|
|
</dependency>
|
|
<!-- Residence -->
|
|
<dependency>
|
|
<groupId>com.bekvon.bukkit</groupId>
|
|
<artifactId>residence</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Residence4.0.0.4.jar</systemPath>
|
|
</dependency>
|
|
<!-- Towny -->
|
|
<dependency>
|
|
<groupId>com.plamergames.bukkit</groupId>
|
|
<artifactId>Towny</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Towny.jar</systemPath>
|
|
</dependency>
|
|
<!-- WorldGuard -->
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/worldguard-6.1.jar</systemPath>
|
|
</dependency>
|
|
<!-- Kingdoms -->
|
|
<dependency>
|
|
<groupId>org.kingdoms</groupId>
|
|
<artifactId>Kingdoms</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Kingdoms.jar</systemPath>
|
|
</dependency>
|
|
<!-- GLib -->
|
|
<dependency>
|
|
<groupId>org.generallib</groupId>
|
|
<artifactId>GLib</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/GLib.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>Spigot-Server</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/spigot-1.12-R0.1-SNAPSHOT.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
<sourceDirectory>${project.basedir}/src/</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${project.basedir}/src/</directory>
|
|
<includes>
|
|
<include>*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.1</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration />
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|