diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-26 11:53:23 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-26 11:53:23 -0500 |
| commit | a0e6c0422bebc90ef90600fa1f27deba65a0fd5f (patch) | |
| tree | 77137369329489d7774c3f7988d3c10d6e259d70 /MediaBrowser.Controller/Entities/GameSystem.cs | |
| parent | 1fe08c083a3e6e1403b7ebd341198c0b0cce2fdd (diff) | |
added more options for block unrated
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameSystem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/GameSystem.cs | 9 |
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; + } } } |
