summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/settings/commands/Help.java
blob: dcc2f6c9794eb17c19fc6b4a46709a4226c395cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package net.ess3.settings.commands;

import lombok.Data;
import lombok.EqualsAndHashCode;
import net.ess3.storage.Comment;
import net.ess3.storage.StorageObject;


@Data
@EqualsAndHashCode(callSuper = false)
public class Help implements StorageObject
{
	@Comment("Show other plugins commands in help")
	private boolean showNonEssCommandsInHelp = true;
	@Comment(
			"Hide plugins which don't give a permission in their plugin.yml for each command.\n"
			 + "You can override a true value here for a single plugin by adding a permission to a user/group.\n"
			 + "The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help this setting reguardless.\n"
			 + "You can use negative permissions to remove access to just a single plugins help if the following is enabled.")
	private boolean hidePermissionlessCommands = true;
}