aboutsummaryrefslogtreecommitdiff
path: root/HermesOnDisk.cs
diff options
context:
space:
mode:
authorWeicao-CatilGrass <1992414357@qq.com>2026-06-04 20:51:49 +0800
committerWeicao-CatilGrass <1992414357@qq.com>2026-06-04 20:51:49 +0800
commit61ef72bb544a19f63bd9dd849592dc3d85aa7981 (patch)
tree0c3ea03b3791b805e631a30b19587bf2ab080ead /HermesOnDisk.cs
parente198b58423f275a2f86494c20401043226fbd218 (diff)
Fix logic error and typo in HermesOnDiskHEADmaster
Diffstat (limited to 'HermesOnDisk.cs')
-rw-r--r--HermesOnDisk.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/HermesOnDisk.cs b/HermesOnDisk.cs
index 5ef29d3..5e76a24 100644
--- a/HermesOnDisk.cs
+++ b/HermesOnDisk.cs
@@ -1,7 +1,7 @@
// ┌─────────────────────────────────────────────────────────────────────────────────────┐
// │ "The Hermes On Your Disk!".cs │
// │ │
-// │ It's a dump, stupid game archive system, but FAST. │
+// │ It's a dumb, stupid game archive system, but FAST. │
// │ │
// │ # HOW TO IMPORT? │
// │ │
@@ -196,7 +196,7 @@ namespace HermesOnDisk
/// </summary>
public static void Store()
{
- if (IsDirty) return;
+ if (!IsDirty) return;
if (ModifiedByteMap.Count > 0) BackupPack();
StoreAll();
}