Browse Source

Merge pull request #142 from nossr50/master

Updated README, removed unused code.
Grant 13 years ago
parent
commit
e8030c59f1
2 changed files with 0 additions and 57 deletions
  1. 0 2
      README.creole
  2. 0 55
      src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java

+ 0 - 2
README.creole

@@ -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

+ 0 - 55
src/main/java/com/gmail/nossr50/datatypes/PlayerProfile.java

@@ -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
@@ -577,56 +572,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)
 	{