aboutsummaryrefslogtreecommitdiff
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
parente198b58423f275a2f86494c20401043226fbd218 (diff)
Fix logic error and typo in HermesOnDiskHEADmaster
-rw-r--r--HermesOnDisk.cs4
-rw-r--r--README.md2
2 files changed, 3 insertions, 3 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();
}
diff --git a/README.md b/README.md
index 262fa1b..197253d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# HermesOnDisk
-It's a dump, stupid game archive system, but FAST.
+It's a dumb, stupid game archive system, but FAST.
## HOW TO USE