mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-18 05:16:12 +00:00
81df3103b6
- Added Reddit flair sync - Removed magical saddle because the stacking potato does the same thing - Some internal improvements - Fixed bug where if a service throws an error while starting or stopping it breaks the entire plugin
18 lines
428 B
Java
18 lines
428 B
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface CommandPermissions
|
|
{
|
|
|
|
Rank level() default Rank.NON_OP;
|
|
|
|
SourceType source() default SourceType.BOTH;
|
|
|
|
boolean blockHostConsole() default false;
|
|
|
|
int cooldown() default 0;
|
|
} |