From d13e6b02a3522b329a6bd9d65d518c78aa1a2fdd Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Tue, 15 Jun 2021 13:07:02 -0700 Subject: [PATCH] Add some info to README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 9ce6f59..f27247b 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ A [Minetest][] library for managing data files in the world directory. It takes a little work to read from & write to data in the world directory. `wdata` aims to make that easier by utilizing just two simple methods. +This mod is essentially an alternative to Minetest's built-in [StorageRef][] & was created before I realized the implementation existed. Some may still find wdata useful as it does allow for customizing sub-directories & filenames. + ### Licensing: - [MIT](LICENSE.txt) @@ -42,3 +44,4 @@ Optional depends: none [Minetest]: http://minetest.net/ +[StorageRef]: https://github.com/minetest/minetest/blob/c9144ae/doc/lua_api.txt#L6883