From 0af9fa4b30e4fe2d246e027a7bd5aaef6ec4ae8a Mon Sep 17 00:00:00 2001 From: JakubR Date: Sat, 3 Apr 2021 23:10:13 +0200 Subject: [PATCH] deleted invalid field in STRUCT_MINE_ATTRIBUTE_TYPES from project constants --- project_constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_constants.py b/project_constants.py index 5cb202a..c624a83 100644 --- a/project_constants.py +++ b/project_constants.py @@ -73,7 +73,7 @@ STRUCT_MINE_ATTRIBUTES = { # (int, int) - index "row,column" where row=int and column=int (used exclusively for chained mine) STRUCT_MINE_ATTRIBUTE_TYPES = { "standard": [], - "chained": [(int, int)], + "chained": [], "time": [int] }