diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2014-02-16 13:28:07 +0000 |
---|---|---|
committer | Ciaran Gultnieks <ciaran@ciarang.com> | 2014-02-16 13:28:07 +0000 |
commit | c240d399fbdf23c8ead4ed8495372cd4860f4886 (patch) | |
tree | ed9b79b19b68914ad5535b867d1bed6037863467 | |
parent | ee3797746f3179044910fc2bb5c2c13cc3c6536b (diff) | |
download | mesecons-c240d399fbdf23c8ead4ed8495372cd4860f4886.tar mesecons-c240d399fbdf23c8ead4ed8495372cd4860f4886.tar.gz mesecons-c240d399fbdf23c8ead4ed8495372cd4860f4886.tar.bz2 mesecons-c240d399fbdf23c8ead4ed8495372cd4860f4886.tar.xz mesecons-c240d399fbdf23c8ead4ed8495372cd4860f4886.zip |
Add missing string.upper to luacontroller
-rw-r--r-- | mesecons_luacontroller/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesecons_luacontroller/init.lua b/mesecons_luacontroller/init.lua index c9a765e..263a66a 100644 --- a/mesecons_luacontroller/init.lua +++ b/mesecons_luacontroller/init.lua @@ -252,6 +252,7 @@ local create_environment = function(pos, mem, event) gsub = string.gsub, len = string.len, lower = string.lower, + upper = string.upper, match = string.match, rep = string.rep, reverse = string.reverse, |