mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Removed some old Sorcery code that won't ever be used
This commit is contained in:
parent
346b7862af
commit
4b642d4953
@ -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
|
||||||
@ -578,56 +573,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)
|
||||||
{
|
{
|
||||||
return player.equals(playername);
|
return player.equals(playername);
|
||||||
|
Loading…
Reference in New Issue
Block a user