diff --git a/README.md b/README.md index b73f9d4..8bd0d85 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ A collection of functions for Lua, geared towards game development. +This fork incorporates randomization from the LOVE engine's math library if +available, and uses a local for random calls. + ## Installation diff --git a/lume.lua b/lume.lua index c38e3ae..f97fe50 100644 --- a/lume.lua +++ b/lume.lua @@ -22,7 +22,7 @@ -- SOFTWARE. -- -local lume = { _version = "2.3.0" } +local lume = { _version = "2.4.0-Guard13007-fork" } local pairs, ipairs = pairs, ipairs local type, assert, unpack = type, assert, unpack or table.unpack