diff options
author | madmaxoft <github@xoft.cz> | 2014-07-13 17:07:30 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-07-13 17:07:55 +0200 |
commit | 8bb0baa842727bd2b8cb22775b18f7a5c3dad57e (patch) | |
tree | a220c6dc9d0988451daee69083c948a679baaf53 /lib | |
parent | Merge pull request #1178 from mc-server/projectilefix (diff) | |
download | cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.tar cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.tar.gz cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.tar.bz2 cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.tar.lz cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.tar.xz cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.tar.zst cuberite-8bb0baa842727bd2b8cb22775b18f7a5c3dad57e.zip |
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tolua++/src/bin/lua/_driver.lua | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/tolua++/src/bin/lua/_driver.lua b/lib/tolua++/src/bin/lua/_driver.lua index 21db96098..87ecd42ea 100644 --- a/lib/tolua++/src/bin/lua/_driver.lua +++ b/lib/tolua++/src/bin/lua/_driver.lua @@ -6,21 +6,21 @@ if mobdebugfound then mobdebug.start() end -- The list of valid arguments that the ToLua scripts can process: local KnownArgs = { ['v'] = true, - ['h'] = true, - ['p'] = true, - ['P'] = true, - ['o'] = true, - ['n'] = true, - ['H'] = true, - ['S'] = true, - ['1'] = true, - ['L'] = true, - ['D'] = true, - ['W'] = true, - ['C'] = true, - ['E'] = true, - ['t'] = true, - ['q'] = true, + ['h'] = true, + ['p'] = true, + ['P'] = true, + ['o'] = true, + ['n'] = true, + ['H'] = true, + ['S'] = true, + ['1'] = true, + ['L'] = true, + ['D'] = true, + ['W'] = true, + ['C'] = true, + ['E'] = true, + ['t'] = true, + ['q'] = true, } |