From ed78baff64fe45479ca6c480d985ce0f9c0c9515 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Sat, 2 Nov 2024 23:11:42 +0100 Subject: more bug fixes --- frontend/GameData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/GameData.cpp') diff --git a/frontend/GameData.cpp b/frontend/GameData.cpp index 70a8058..635073a 100644 --- a/frontend/GameData.cpp +++ b/frontend/GameData.cpp @@ -77,7 +77,7 @@ Object * GameData::create_object(const string & name) const { .description = row.col(0, nullptr), .type = row.col(1, nullptr), .value = { row.col(2), row.col(3) }, - .protection = row.col(4), + .protection = row.col(4), }); } catch (Exception & e) { return ObjectFactory::create_object(name.c_str()); -- cgit v1.2.3