summaryrefslogtreecommitdiffstats
path: root/logic/minecraft/NullProfileStrategy.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/minecraft/NullProfileStrategy.h')
-rw-r--r--logic/minecraft/NullProfileStrategy.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/logic/minecraft/NullProfileStrategy.h b/logic/minecraft/NullProfileStrategy.h
index eaabd3c7..44a46060 100644
--- a/logic/minecraft/NullProfileStrategy.h
+++ b/logic/minecraft/NullProfileStrategy.h
@@ -13,6 +13,14 @@ class NullProfileStrategy: public ProfileStrategy
{
return false;
}
+ virtual bool customizePatch(ProfilePatchPtr patch)
+ {
+ return false;
+ }
+ virtual bool revertPatch(ProfilePatchPtr patch)
+ {
+ return false;
+ }
virtual bool resetOrder()
{
return false;
@@ -21,4 +29,4 @@ class NullProfileStrategy: public ProfileStrategy
{
return false;
}
-}; \ No newline at end of file
+};