2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 07:11:52 +00:00

fix crash when people put a list of cave ids in a wallet

This commit is contained in:
Philip Sargent 2022-10-06 21:37:09 +03:00
parent 4a34986598
commit 1f70b77735

View File

@ -104,10 +104,15 @@ def fillblankothers(w):
wcaveid = w.cave()
if not wcaveid or wcaveid == "":
caveifywallet(w)
else:
if type(wcaveid) == list:
for i in wcaveid:
if i in Gcavelookup:
w.caveobj = Gcavelookup[i] # just sets it to the last one found. nasty. bug waiting to happen
#print(f' - Found cave object from id {wcaveid}')
else:
if wcaveid in Gcavelookup:
w.caveobj = Gcavelookup[wcaveid]
# print(f' - Found cave object from id {wcaveid}')
else:
print(f' - Failed to find cave object from id {wcaveid}')