From be17bf7c7d9475c7f8f48c8aef23598151d41423 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 11 Jun 2022 07:32:43 -0400 Subject: [PATCH] fix mistype --- common/bspfile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/bspfile.cc b/common/bspfile.cc index e337b200..7b60aa48 100644 --- a/common/bspfile.cc +++ b/common/bspfile.cc @@ -1201,7 +1201,7 @@ std::string contentflags_t::to_string(const gamedef_t *game) const // FIXME: how do we conditionally display this only when it matters (when it's not default basically)? s += fmt::format("|MIRROR_INSIDE[{}]", mirror_inside.has_value() ? (clips_same_type.value() ? "true" : "false") : "nullopt"); - s += fmt::format("|CLIPS_SAME_TYPE[{}]", clips_same_type.has_value() ? (mirror_inside.value() ? "true" : "false") : "nullopt"); + s += fmt::format("|CLIPS_SAME_TYPE[{}]", clips_same_type.has_value() ? (clips_same_type.value() ? "true" : "false") : "nullopt"); if (extended & CFLAGS_HINT) { s += "|HINT";