# /grecreate - Reset a world to its original state

Sometimes it can be useful to reset a world to its original state. For example, to reuse a farm world.

## The command in detail

`<span class="editor-theme-code">/grecreate <name> <backup></span>`

### Parameters explained

1. **Name (required):** The name of the world.
    - <p class="callout warning">The world must be known and managed by GWorld (created/imported).</p>
2. **Backup (required):** Whether a backup of the world should be created before it is deleted and recreated.
    - **Possible values:**<span style="white-space: pre-wrap;"> true, false</span>
    - **true:** A backup of the world is created in the “old\_maps” directory
    - **false:**<span style="white-space: pre-wrap;"> No backup is created</span>

---

## Examples

### 1. Recreate a world with backup

The world “MyWorld” will be recreated, but first a backup must be created:

```bash
/grecreate MyWorld true
```

### 2. Recreate a world without backup

The world “MyWorld” is recreated without creating a backup:

```bash
/grecreate MyWorld false
```