File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ To add this project as a dependency to your project, add the following to your p
37
37
<dependency >
38
38
<groupId >com.github.Despical</groupId >
39
39
<artifactId >CommandFramework</artifactId >
40
- <version >1.2.4 </version >
40
+ <version >1.2.5 </version >
41
41
<scope >compile</scope >
42
42
</dependency >
43
43
```
@@ -50,7 +50,7 @@ repositories {
50
50
```
51
51
```
52
52
dependencies {
53
- compileOnly group: "com.github.Despical", name: "CommandFramework", version: "1.2.4 ";
53
+ compileOnly group: "com.github.Despical", name: "CommandFramework", version: "1.2.5 ";
54
54
}
55
55
```
56
56
@@ -95,6 +95,9 @@ public class ExampleClass extends JavaPlugin {
95
95
max = 5 ,
96
96
cooldown = 10 ,
97
97
onlyOp = false , // this option will ignore permission if it is set
98
+ // be careful if you are using non-thread safe operations
99
+ // and if you want to enable option below
100
+ async = false ,
98
101
senderType = Command . SenderType . CONSOLE
99
102
)
100
103
public void exampleCommand (CommandArguments arguments ) {
You can’t perform that action at this time.
0 commit comments