diff options
| author | dam <dam@gudinoff> | 2022-09-02 15:28:25 +0000 |
|---|---|---|
| committer | dam <dam@gudinoff> | 2022-09-02 15:28:25 +0000 |
| commit | f1e217c491ed9626699de58c7c95d16045b47bec (patch) | |
| tree | d8a80d0a401c0ea8bd55a458fce6d3dc63dad506 /logic/database_entry.gd | |
| parent | 8b19e21012092619285bae0e44a0abb3f274ed66 (diff) | |
| download | surgery-log-1.5.tar.zst surgery-log-1.5.zip | |
Renamed is_urgent to emergency_surgery. Increased version to 1.5.v1.5
Diffstat (limited to 'logic/database_entry.gd')
| -rw-r--r-- | logic/database_entry.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/database_entry.gd b/logic/database_entry.gd index 3a78505..b7a88a2 100644 --- a/logic/database_entry.gd +++ b/logic/database_entry.gd @@ -17,7 +17,7 @@ const ENTRY_PROTOTYPE: Dictionary = { "sub_sub_type": "", "pathology": "", "intervention": "", - "is_urgent": false, + "emergency_surgery":false, "notes": "", } @@ -40,7 +40,7 @@ static func instance_entry(params: Dictionary = {}) -> Dictionary: new_entry.sub_sub_type = params.get("sub_sub_type", "") new_entry.pathology = params.get("pathology", "") new_entry.intervention = params.get("intervention", "") - new_entry.is_urgent = params.get("is_urgent", false) + new_entry.emergency_surgery = params.get("emergency_surgery", false) new_entry.notes = params.get("notes", "") return new_entry |
