diff options
| author | 2016-09-07 14:27:35 +0200 | |
|---|---|---|
| committer | 2016-09-07 14:27:35 +0200 | |
| commit | fa4b5bdee60e7aa95b435f0a1198a314de815fb1 (patch) | |
| tree | 2ee3ba6bfc502db21c8454eb4648fc0219419568 /plugins/data/data_command.lua | |
| parent | 42ab14dc64fec61d27cd9c6da7d8e7bb8e5f24f1 (diff) | |
| parent | 9d101cad6a9834c5645f20c152466267ab13845f (diff) | |
Merge pull request #1368 from cracyc/lua_dats
Move UI dats to lua plugin
Diffstat (limited to 'plugins/data/data_command.lua')
| -rw-r--r-- | plugins/data/data_command.lua | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/data/data_command.lua b/plugins/data/data_command.lua new file mode 100644 index 00000000000..a868b792c22 --- /dev/null +++ b/plugins/data/data_command.lua @@ -0,0 +1,25 @@ +local dat = {} +local info, ver + +local datread = require("data/load_dat") +datread, ver = datread.open("command.dat", nil) + +function dat.check(set, softlist) + if softlist or not datread then + return nil + end + local status + status, info = pcall(datread, "cmd", "info", set) + if not status or not info then + return nil + end + local convert = require("data/button_char") + info = "#jf\n" .. convert(info) + return "Command" +end + +function dat.get() + return info +end + +return dat |
