diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-13 01:21:46 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-03-13 01:21:46 -0400 |
commit | d450d5d406b88cd247803941fab5ce2cfaa3723d (patch) | |
tree | f11cc27493e1e19406f18d091b1de6247104540a /tools/mapjson/mapjson.cpp | |
parent | a0f951b09c526bd92c2719ef3e28cccfeb0fc84a (diff) |
var_value to string
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 41d8b01f8..0302ee61a 100644 --- a/tools/mapjson/mapjson.cpp +++ b/tools/mapjson/mapjson.cpp @@ -317,7 +317,7 @@ string generate_firered_map_events_text(Json map_data) { << coord_event["y"].int_value() << ", " << coord_event["elevation"].int_value() << ", 0, " << coord_event["var"].string_value() << ", " - << coord_event["var_value"].int_value() << ", 0, " + << coord_event["var_value"].string_value() << ", 0, " << coord_event["script"].string_value() << "\n"; } else if (coord_event["type"] == "weather") { |