Skip to content

Commit

Permalink
fix: Fix Don't return user address if not conquering
Browse files Browse the repository at this point in the history
  • Loading branch information
upa-r-upa committed Mar 25, 2024
1 parent 9a0405b commit 65fe7e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/Savor22b/Model/Dungeon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public bool IsConquest(BlockChain blockChain)

return globalDungeonState.DungeonStatus.TryGetValue(ID.ToString(), out Address address)
? address
: default;
: null;
}
}

0 comments on commit 65fe7e9

Please sign in to comment.