summaryrefslogtreecommitdiff
path: root/src/modinfo.h
diff options
context:
space:
mode:
authorMikaël Capelle <capelle.mikael@gmail.com>2021-01-21 21:12:46 +0100
committerMikaël Capelle <capelle.mikael@gmail.com>2021-01-21 21:12:46 +0100
commit34c87a0efa18ad77cbf773bc99bd9f08082b27e9 (patch)
treeffee1ab1d15463db9113dd4231ba900c296c44f0 /src/modinfo.h
parente1106ad42c003f58c06172cb6afef9f526d05d59 (diff)
Prevent backups from being enabled.
Diffstat (limited to 'src/modinfo.h')
-rw-r--r--src/modinfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modinfo.h b/src/modinfo.h
index 0fbcd1c0..ff6c4001 100644
--- a/src/modinfo.h
+++ b/src/modinfo.h
@@ -606,10 +606,10 @@ public: // Methods after this do not come from IModInterface:
//
bool isFixedPriority() const { return isBackup() || isOverwrite(); }
- /**
- * @return true if the mod is always enabled.
- */
+ // check if this mod should always be enabled or disabled
+ //
virtual bool alwaysEnabled() const { return false; }
+ virtual bool alwaysDisabled() const { return false; }
/**
* @return true if the mod can be updated.