Rename /f perm show2 to /f perm view
This commit is contained in:
		@@ -1,5 +1,4 @@
 | 
				
			|||||||
main: ${project.groupId}.${project.name}
 | 
					main: ${project.groupId}.${project.name}
 | 
				
			||||||
main: ${project.groupId}.${project.name}
 | 
					 | 
				
			||||||
name: ${project.name}
 | 
					name: ${project.name}
 | 
				
			||||||
version: ${project.version}
 | 
					version: ${project.version}
 | 
				
			||||||
website: ${project.url}
 | 
					website: ${project.url}
 | 
				
			||||||
@@ -64,7 +63,7 @@ permissions:
 | 
				
			|||||||
  factions.perm.list: {description: list perms, default: false}
 | 
					  factions.perm.list: {description: list perms, default: false}
 | 
				
			||||||
  factions.perm.set: {description: set perms, default: false}
 | 
					  factions.perm.set: {description: set perms, default: false}
 | 
				
			||||||
  factions.perm.show: {description: show who has perm, default: false}
 | 
					  factions.perm.show: {description: show who has perm, default: false}
 | 
				
			||||||
  factions.perm.show2: {description: show perms given to, default: false}
 | 
					  factions.perm.view: {description: view perms given to, default: false}
 | 
				
			||||||
  factions.player: {description: show player information}
 | 
					  factions.player: {description: show player information}
 | 
				
			||||||
  factions.powerboost: {description: manage powerboost, default: false}
 | 
					  factions.powerboost: {description: manage powerboost, default: false}
 | 
				
			||||||
  factions.powerboost.faction: {description: show faction powerboost, default: false}
 | 
					  factions.powerboost.faction: {description: show faction powerboost, default: false}
 | 
				
			||||||
@@ -163,7 +162,7 @@ permissions:
 | 
				
			|||||||
      factions.perm.list: true
 | 
					      factions.perm.list: true
 | 
				
			||||||
      factions.perm.set: true
 | 
					      factions.perm.set: true
 | 
				
			||||||
      factions.perm.show: true
 | 
					      factions.perm.show: true
 | 
				
			||||||
      factions.perm.show2: true
 | 
					      factions.perm.view: true
 | 
				
			||||||
      factions.player: true
 | 
					      factions.player: true
 | 
				
			||||||
      factions.powerboost: true
 | 
					      factions.powerboost: true
 | 
				
			||||||
      factions.powerboost.faction: true
 | 
					      factions.powerboost.faction: true
 | 
				
			||||||
@@ -285,7 +284,7 @@ permissions:
 | 
				
			|||||||
      factions.perm.list: true
 | 
					      factions.perm.list: true
 | 
				
			||||||
      factions.perm.set: true
 | 
					      factions.perm.set: true
 | 
				
			||||||
      factions.perm.show: true
 | 
					      factions.perm.show: true
 | 
				
			||||||
      factions.perm.show2: true
 | 
					      factions.perm.view: true
 | 
				
			||||||
      factions.player: true
 | 
					      factions.player: true
 | 
				
			||||||
      factions.promote: true
 | 
					      factions.promote: true
 | 
				
			||||||
      factions.powerboost: true
 | 
					      factions.powerboost: true
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -58,7 +58,7 @@ public enum Perm implements Identified
 | 
				
			|||||||
	PERM_LIST,
 | 
						PERM_LIST,
 | 
				
			||||||
	PERM_SET,
 | 
						PERM_SET,
 | 
				
			||||||
	PERM_SHOW,
 | 
						PERM_SHOW,
 | 
				
			||||||
	PERM_SHOW2,
 | 
						PERM_VIEW,
 | 
				
			||||||
	PLAYER,
 | 
						PLAYER,
 | 
				
			||||||
	POWERBOOST,
 | 
						POWERBOOST,
 | 
				
			||||||
	POWERBOOST_PLAYER,
 | 
						POWERBOOST_PLAYER,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,7 @@ public class CmdFactionsPerm extends FactionsCommand
 | 
				
			|||||||
	
 | 
						
 | 
				
			||||||
	CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList();
 | 
						CmdFactionsPermList cmdFactionsPermList = new CmdFactionsPermList();
 | 
				
			||||||
	CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow();
 | 
						CmdFactionsPermShow cmdFactionsPermShow = new CmdFactionsPermShow();
 | 
				
			||||||
	CmdFactionsPermShow2 cmdFactionsPermShow2 = new CmdFactionsPermShow2();
 | 
						CmdFactionsPermView cmdFactionsPermView = new CmdFactionsPermView();
 | 
				
			||||||
	CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet();
 | 
						CmdFactionsPermSet cmdFactionsPermSet = new CmdFactionsPermSet();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,13 +15,13 @@ import org.bukkit.ChatColor;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import java.util.stream.Collectors;
 | 
					import java.util.stream.Collectors;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public class CmdFactionsPermShow2 extends FactionsCommand
 | 
					public class CmdFactionsPermView extends FactionsCommand
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	// -------------------------------------------- //
 | 
						// -------------------------------------------- //
 | 
				
			||||||
	// CONSTRUCT
 | 
						// CONSTRUCT
 | 
				
			||||||
	// -------------------------------------------- //
 | 
						// -------------------------------------------- //
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	public CmdFactionsPermShow2()
 | 
						public CmdFactionsPermView()
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
		// Parameters
 | 
							// Parameters
 | 
				
			||||||
		this.addParameter(TypeMPermable.get(), "rank/rel/player/faction");
 | 
							this.addParameter(TypeMPermable.get(), "rank/rel/player/faction");
 | 
				
			||||||
		Reference in New Issue
	
	Block a user