Updated API Usages (markdown)

Ben Woo 2021-03-17 00:06:55 +08:00
parent 8f55f4e300
commit b3602a9704

@ -27,10 +27,10 @@ Things to note:
### Loading/Unloading a world ### Loading/Unloading a world
You may want to unload worlds when unused and load them back when it's needed. You may want to unload worlds when unused and load them back when it's needed.
```java ```java
// unloading // Unloading
worldManager.unloadWorld("creative"); worldManager.unloadWorld("creative");
// loading // Loading
worldManager.loadWorld("creative"); worldManager.loadWorld("creative");
``` ```
Things to note: Things to note: