From 1c99d068459dd918967e6f6717dbd74694a823d1 Mon Sep 17 00:00:00 2001 From: Branleaf <78628663+Branleaf@users.noreply.github.com> Date: Tue, 8 Feb 2022 22:29:04 +0000 Subject: [PATCH] removeWorldEntry now works again --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5786b40..a8ca12d 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ You can read from the `worldInfo` parameter (an array of objects representing si You can modify worldInfo with the below functions (not methods of worldInfo): * addWorldEntry(keys, entry) - This function will return the index at which the new world info entry is added to the `worldInfo` array. For instance, adding world info to an adventure with one existing world info will cause this function to return `1`, as this is the index of the newly added world info in the array. Remember, arrays are 0-based, so entry number one would be at index 0. -* removeWorldEntry(index) - **Note: At the time of writing, this is known to be bugged and likely will not work. This note will be removed when this is no longer the case.** +* removeWorldEntry(index) * updateWorldEntry(index, keys, entry) Things to note: