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:
|
Required Libraries:
|
||||||
* CraftBukkit
|
* CraftBukkit
|
||||||
* Spout API
|
* Spout API
|
||||||
* Permissions
|
|
||||||
* PermissionsEx
|
|
||||||
|
|
||||||
Required to Run:
|
Required to Run:
|
||||||
* Bukkit
|
* Bukkit
|
||||||
|
@ -66,11 +66,6 @@ public class PlayerProfile
|
|||||||
//MySQL STUFF
|
//MySQL STUFF
|
||||||
private int xpbarinc=0, lastlogin=0, userid = 0, bleedticks = 0;
|
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;
|
private String playername;
|
||||||
|
|
||||||
//Time to HashMap this shiz
|
//Time to HashMap this shiz
|
||||||
@ -577,56 +572,6 @@ public class PlayerProfile
|
|||||||
{
|
{
|
||||||
partyChatMode = !partyChatMode;
|
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)
|
public boolean isPlayer(String player)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user