mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-27 19:19:07 +00:00
DecIrisWhat
This commit is contained in:
@@ -40,6 +40,8 @@ public class DecIris implements DecreeExecutor
|
||||
|
||||
private DecIrisPregen pregen;
|
||||
|
||||
private DecIrisWhat what;
|
||||
|
||||
@Decree(description = "Create a new world", aliases = "+")
|
||||
public void create(
|
||||
@Param(name = "name", aliases = "worldName", description = "The name of the world to create", defaultValue = "IrisWorld")
|
||||
|
||||
10
src/main/java/com/volmit/iris/core/decrees/DecIrisWhat.java
Normal file
10
src/main/java/com/volmit/iris/core/decrees/DecIrisWhat.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package com.volmit.iris.core.decrees;
|
||||
|
||||
import com.volmit.iris.util.decree.DecreeExecutor;
|
||||
import com.volmit.iris.util.decree.DecreeOrigin;
|
||||
import com.volmit.iris.util.decree.annotations.Decree;
|
||||
|
||||
@Decree(name = "what", aliases = "?", description = "Get information about the world around you", origin = DecreeOrigin.PLAYER)
|
||||
public class DecIrisWhat implements DecreeExecutor {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user