Bug fixes (#603)

* Update Boundary.java

* fix xp to level up

* tomato shop

* fix longsword attack anim

* Update MeleeData.java

* fix dagger/longsword/shortsword anims

* Update MeleeData.java

* obby maul and warhammer interfaces and halberd anims

* Pickaxe anims

randomly uses the anim for either stab str or crush str. Cheaphax before system redesign

* adds razmires builder shop

* pom.xml update
This commit is contained in:
MatthewBishop
2023-02-06 13:43:27 -05:00
committed by GitHub
parent 67efff663e
commit 81e6344dd8
7 changed files with 64 additions and 18 deletions
+20 -3
View File
@@ -155,13 +155,30 @@
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/java</source>
<source>plugins</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<generatedSourcesDirectory>${project.basedir}/plugins</generatedSourcesDirectory>
<generatedSourcesDirectory>${project.basedir}/src/main/java</generatedSourcesDirectory>
<source>8</source>
<target>8</target>
<encoding>UTF-8</encoding>