Skip to content

Commit 99dedf3

Browse files
committed
Fixed GetConfig issue
1 parent c71fd91 commit 99dedf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI/Data/NetworkConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ public void FromBase64(string base64, bool createDummyObject = false)
313313
/// <returns></returns>
314314
public ulong GetConfig(bool cache = true)
315315
{
316-
if (ConfigHash == null && cache)
316+
if (ConfigHash != null && cache)
317317
return ConfigHash.Value;
318318

319319
using (BitWriter writer = BitWriter.Get())

0 commit comments

Comments
 (0)