DecIrisWhat

This commit is contained in:
CocoTheOwner 2021-08-16 21:51:17 +02:00
parent b2c9108ffc
commit 3a7c8d660c
2 changed files with 12 additions and 0 deletions

View File

@ -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")

View 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 {
}