Skip to content

Commit

Permalink
report horror value for floors
Browse files Browse the repository at this point in the history
  • Loading branch information
malytomas committed Oct 5, 2023
1 parent 2b1e65c commit 4624433
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sources/exportFloor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ FloorExport exportFloor(const Floor &floor)
result.json += (Stringizer() + "\"level\":" + floor.level + ",\n").value.c_str();
result.json += (Stringizer() + "\"width\":" + floor.width + ",\n").value.c_str();
result.json += (Stringizer() + "\"height\":" + floor.height + ",\n").value.c_str();
result.json += (Stringizer() + "\"horror\":" + isHorrorFloor(floor.level) + ",\n").value.c_str();
result.json += "\"tiles\":[\n";
for (uint32 y = 0; y < floor.height; y++)
{
Expand Down

0 comments on commit 4624433

Please sign in to comment.