diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gencode.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/gencode.js b/tools/gencode.js index d155140..946464f 100644 --- a/tools/gencode.js +++ b/tools/gencode.js @@ -112,7 +112,10 @@ for (let line of fs.readFileSync("events.txt", "utf-8").split("\n")) { emit([ "place", false, 1, line[1], line[2] ]) break case "auto_place": - emit([ "auto_place", false, 0, line[1], line[2] ]) + emit([ "auto_place", false, 0, false, line[1], line[2] ]) + break + case "auto_place_rebel": + emit([ "auto_place", false, 0, true, line[1], line[2] ]) break case "log": |