aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/GameSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-26 11:53:23 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-26 11:53:23 -0500
commita0e6c0422bebc90ef90600fa1f27deba65a0fd5f (patch)
tree77137369329489d7774c3f7988d3c10d6e259d70 /MediaBrowser.Controller/Entities/GameSystem.cs
parent1fe08c083a3e6e1403b7ebd341198c0b0cce2fdd (diff)
added more options for block unrated
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameSystem.cs')
-rw-r--r--MediaBrowser.Controller/Entities/GameSystem.cs9
1 files changed, 8 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/GameSystem.cs b/MediaBrowser.Controller/Entities/GameSystem.cs
index 054071b35..63af8082a 100644
--- a/MediaBrowser.Controller/Entities/GameSystem.cs
+++ b/MediaBrowser.Controller/Entities/GameSystem.cs
@@ -1,4 +1,5 @@
-using System;
+using MediaBrowser.Model.Configuration;
+using System;
namespace MediaBrowser.Controller.Entities
{
@@ -38,5 +39,11 @@ namespace MediaBrowser.Controller.Entities
}
return base.GetUserDataKey();
}
+
+ protected override bool GetBlockUnratedValue(UserConfiguration config)
+ {
+ // Don't block. Determine by game
+ return false;
+ }
}
}