Add support for eclipse run configurations

This commit is contained in:
kingbirdy 2015-08-28 21:44:41 -04:00
parent 36f1ddd285
commit fe5f87df32
6 changed files with 23 additions and 10 deletions

13
.gitignore vendored
View file

@ -214,3 +214,16 @@ pip-log.txt
#Mr Developer
.mr.developer.cfg
##########
## test
##########
#everything but the plugin, spigot, and a pre-accepted eula
test/server/crash-reports/
test/server/logs/
test/server/world*/
test/server/*.json
test/server/*.yml
test/server/*.properties
test/server/plugins/*/

7
extras/ant/build.xml Normal file
View file

@ -0,0 +1,7 @@
<?xml version="1.0" ?>
<!-- Configuration of the Ant build system to generate a Jar file -->
<project name="ProjectKorra" default="CreateJar">
<target name="CreateJar" description="Create Jar file">
<jar jarfile="../../test/server/plugins/ProjectKorra.jar" basedir="../../bin/" includes="**/*" />
</target>
</project>

View file

@ -5,7 +5,6 @@ import com.projectkorra.projectkorra.GeneralMethods;
import com.projectkorra.projectkorra.ProjectKorra;
import com.projectkorra.projectkorra.airbending.AirCombo;
import com.projectkorra.projectkorra.chiblocking.ChiCombo;
import com.projectkorra.projectkorra.earthbending.EarthCombo;
import com.projectkorra.projectkorra.firebending.FireCombo;
import com.projectkorra.projectkorra.util.ClickType;
import com.projectkorra.projectkorra.waterbending.WaterCombo;
@ -160,13 +159,6 @@ public class ComboManager {
comboAbilityList.add(new ComboAbility("Immobilize", immobilize, ChiCombo.class));
descriptions.put("Immobilize", "Immobilizes the opponent for several seconds.");
instructions.put("Immobilize", "QuickStrike (Left Click) > SwiftKick (Left Click) > QuickStrike (Left Click) > QuickStrike (Left Click)");
ArrayList<AbilityInformation> earthBurrow = new ArrayList<AbilityInformation>();
earthBurrow.add(new AbilityInformation("EarthTunnel", ClickType.LEFT_CLICK));
earthBurrow.add(new AbilityInformation("Collapse", ClickType.SHIFT_DOWN));
comboAbilityList.add(new ComboAbility("EarthBurrow", earthBurrow, EarthCombo.class));
descriptions.put("EarthBurrow", "Sink into the ground to avoid attacks and confuse foes.");
instructions.put("EarthBurrow", "EarthTunnel (Left Click) > Collapse (Shift)");
startCleanupTask();
}
@ -193,8 +185,6 @@ public class ComboManager {
new WaterCombo(player, comboAbil.getName());
else if (comboAbil.getComboType().equals(ChiCombo.class))
new ChiCombo(player, comboAbil.getName());
else if (comboAbil.getComboType().equals(EarthCombo.class))
new EarthCombo(player, comboAbil.getName());
else {
for (ComboAbility ca : comboAbilityList) {
if (comboAbil.getName().equals(ca.getName())) {

3
test/server/eula.txt Normal file
View file

@ -0,0 +1,3 @@
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://account.mojang.com/documents/minecraft_eula).
#Fri Aug 28 18:06:15 EDT 2015
eula=true

Binary file not shown.

Binary file not shown.