diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-02-02 22:09:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 22:09:36 -0500 |
commit | 7d2344c07bea9a46993a92d4611fba80545acdd2 (patch) | |
tree | 9f865097bfc54f3c9ac885d9f1ec721f01d74eab /tools/mapjson/mapjson.cpp | |
parent | f494238a9d1f8f486891845a43983e187dbeadf0 (diff) | |
parent | dc7d86f026c01682bd024fabb0ce206eacb81c35 (diff) |
Merge pull request #1616 from GriffinRichards/missing-req
Add missing :req, remove old macros
Diffstat (limited to 'tools/mapjson/mapjson.cpp')
-rw-r--r-- | tools/mapjson/mapjson.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mapjson/mapjson.cpp b/tools/mapjson/mapjson.cpp index d767b469e..3eab98f2b 100644 --- a/tools/mapjson/mapjson.cpp +++ b/tools/mapjson/mapjson.cpp @@ -230,7 +230,7 @@ string generate_map_events_text(Json map_data) { text << bgs_label << ":\n"; for (auto &bg_event : map_data["bg_events"].array_items()) { if (bg_event["type"] == "sign") { - text << "\tbg_event " + text << "\tbg_sign_event " << bg_event["x"].int_value() << ", " << bg_event["y"].int_value() << ", " << bg_event["elevation"].int_value() << ", " |