aboutsummaryrefslogtreecommitdiff
path: root/logic/database.gd
diff options
context:
space:
mode:
authordam <dam@gudinoff>2022-01-24 00:27:59 +0000
committerdam <dam@gudinoff>2022-01-24 00:27:59 +0000
commite704e2cca56aed71f6e41dd060ddab5babd10569 (patch)
tree11137278fbf0cbdb671308e7101799cdf47ea096 /logic/database.gd
parent4d8709e47afc2eb8b4e46ced2747b662a849da29 (diff)
downloadsurgery-log-e704e2cca56aed71f6e41dd060ddab5babd10569.tar.zst
surgery-log-e704e2cca56aed71f6e41dd060ddab5babd10569.zip
Draft prototype of option sets' structure, load and store.
Diffstat (limited to 'logic/database.gd')
-rw-r--r--logic/database.gd1
1 files changed, 0 insertions, 1 deletions
diff --git a/logic/database.gd b/logic/database.gd
index 3d74da3..b76fda5 100644
--- a/logic/database.gd
+++ b/logic/database.gd
@@ -125,7 +125,6 @@ func load_database(file_path: String = DATABASE_FILE_PATH):
file.open(file_path, File.READ_WRITE)
var headers: PoolStringArray
var is_first_line := true
-# while file.eof_reached() == false: # @DAM Why this?
while file.get_position() < file.get_len():
var csv_entry := file.get_csv_line()
if is_first_line: