Build please

This commit is contained in:
Joshua 2021-02-07 02:37:48 -06:00
parent 193d12f7b4
commit d3f44e24a2
2 changed files with 3 additions and 3 deletions

View File

@ -122,7 +122,7 @@
<dependency>
<groupId>io.lumine</groupId>
<artifactId>MythicLib</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>

View File

@ -101,7 +101,7 @@ public class PlayerData extends OfflinePlayerData {
private PlayerData() {
super(UUID.randomUUID());
mmoData = new MMOPlayerData(null, null);
mmoData = new MMOPlayerData(null);
playerStats = new PlayerStats(this);
questData = new PlayerQuests(this, null);
}
@ -447,7 +447,7 @@ public class PlayerData extends OfflinePlayerData {
*
* @param value Experience to give the player
* @param source How the player earned experience
* @param loc Location used to display the hologram. If it's null, no
* @param hologramLocation Location used to display the hologram. If it's null, no
* hologram will be displayed
*/
public void giveExperience(int value, EXPSource source, @Nullable Location hologramLocation) {