mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
Also handle setget.
This commit is contained in:
parent
4322dcbbcb
commit
caf1fb1a39
@ -392,6 +392,12 @@ class GDSParser:
|
||||
|
||||
ret.append("#" + expstr)
|
||||
l = l.replace(expstr, "")
|
||||
|
||||
var setget_indx = lfstrip.find(" setget ")
|
||||
if setget_indx != -1:
|
||||
var setget_str : String = lfstrip.substr(setget_indx)
|
||||
ret.append("#" + setget_str)
|
||||
l = l.replace(setget_str, "")
|
||||
|
||||
if l.ends_with("\\"):
|
||||
if !accum:
|
||||
|
Loading…
Reference in New Issue
Block a user