mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-02 08:39:49 +01:00
Merge pull request #142 from nossr50/master
Updated README, removed unused code.
This commit is contained in:
commit
e8030c59f1
@ -18,8 +18,6 @@ Hearing that people enjoy mcMMO and seeing the daily youtube videos about my mod
|
||||
Required Libraries:
|
||||
* CraftBukkit
|
||||
* Spout API
|
||||
* Permissions
|
||||
* PermissionsEx
|
||||
|
||||
Required to Run:
|
||||
* Bukkit
|
||||
|
@ -66,11 +66,6 @@ public class PlayerProfile
|
||||
//MySQL STUFF
|
||||
private int xpbarinc=0, lastlogin=0, userid = 0, bleedticks = 0;
|
||||
|
||||
//MAGIC STUFF
|
||||
private int mana = 0;
|
||||
private int greenDyeCycleSel = 0, greenDyeCycle = 0, blueDyeCycle = 0, blueDyeCycleSel = 0;
|
||||
public boolean dyeChanged = false;
|
||||
|
||||
private String playername;
|
||||
|
||||
//Time to HashMap this shiz
|
||||
@ -578,56 +573,6 @@ public class PlayerProfile
|
||||
partyChatMode = !partyChatMode;
|
||||
}
|
||||
|
||||
public void setMana(int newvalue)
|
||||
{
|
||||
mana = newvalue;
|
||||
}
|
||||
|
||||
public int getCurrentMana()
|
||||
{
|
||||
return mana;
|
||||
}
|
||||
public void setDyeChanged(Boolean bool)
|
||||
{
|
||||
dyeChanged = bool;
|
||||
}
|
||||
public boolean getDyeChanged()
|
||||
{
|
||||
return dyeChanged;
|
||||
}
|
||||
public void setBlueDyeCycle(int newvalue)
|
||||
{
|
||||
blueDyeCycle = newvalue;
|
||||
}
|
||||
public int getBlueDyeCycle()
|
||||
{
|
||||
return blueDyeCycle;
|
||||
}
|
||||
public void setBlueDyeCycleSel(int newvalue)
|
||||
{
|
||||
blueDyeCycleSel = newvalue;
|
||||
}
|
||||
public int getBlueDyeCycleSel()
|
||||
{
|
||||
return blueDyeCycleSel;
|
||||
}
|
||||
public void setGreenDyeCycle(int newvalue)
|
||||
{
|
||||
greenDyeCycle = newvalue;
|
||||
}
|
||||
public int getGreenDyeCycle()
|
||||
{
|
||||
return greenDyeCycle;
|
||||
}
|
||||
public void setGreenDyeCycleSel(int newvalue)
|
||||
{
|
||||
greenDyeCycleSel = newvalue;
|
||||
}
|
||||
public int getGreenDyeCycleSel()
|
||||
{
|
||||
return greenDyeCycleSel;
|
||||
}
|
||||
|
||||
public boolean isPlayer(String player)
|
||||
{
|
||||
return player.equals(playername);
|
||||
|
Loading…
Reference in New Issue
Block a user