diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-01-22 19:45:27 -0500 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-01-22 19:45:27 -0500 |
commit | e85c797f7de1d3aae736fe574685f369115c4a38 (patch) | |
tree | 71eb1a4670b448a25024f1436a9063b5af7ab44b /tools | |
parent | a18976056bcceddf253263238ff6cef7ca6f9530 (diff) | |
download | vijayanagara-e85c797f7de1d3aae736fe574685f369115c4a38.tar.gz |
Rework vm_place - Event 9
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gencode.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gencode.js b/tools/gencode.js index 946464f..e70794e 100644 --- a/tools/gencode.js +++ b/tools/gencode.js @@ -106,10 +106,10 @@ for (let line of fs.readFileSync("events.txt", "utf-8").split("\n")) { break case "place": - emit([ "place", false, 0, line[1], line[2] ]) + emit([ "place", false, 0, line[1], line[2], line[3] ]) break case "place_opt": - emit([ "place", false, 1, line[1], line[2] ]) + emit([ "place", false, 1, line[1], line[2], line[3] ]) break case "auto_place": emit([ "auto_place", false, 0, false, line[1], line[2] ]) |