fix(dtmm): Fix generating mod data
It would generate a syntax error when there was more than one entry in the table.
This commit is contained in:
parent
1d26a5c113
commit
5a3c19fb3e
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ fn build_mod_data_lua(state: Arc<State>) -> String {
|
|||
lua.push_str("\",\n");
|
||||
}
|
||||
|
||||
lua.push_str(" }\n }\n");
|
||||
lua.push_str(" },\n },\n");
|
||||
}
|
||||
|
||||
lua.push('}');
|
||||
|
|
Loading…
Add table
Reference in a new issue