mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2026-06-17 14:21:33 +00:00
DecIrisWhat
This commit is contained in:
@@ -40,6 +40,8 @@ public class DecIris implements DecreeExecutor
|
|||||||
|
|
||||||
private DecIrisPregen pregen;
|
private DecIrisPregen pregen;
|
||||||
|
|
||||||
|
private DecIrisWhat what;
|
||||||
|
|
||||||
@Decree(description = "Create a new world", aliases = "+")
|
@Decree(description = "Create a new world", aliases = "+")
|
||||||
public void create(
|
public void create(
|
||||||
@Param(name = "name", aliases = "worldName", description = "The name of the world to create", defaultValue = "IrisWorld")
|
@Param(name = "name", aliases = "worldName", description = "The name of the world to create", defaultValue = "IrisWorld")
|
||||||
|
|||||||
@@ -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