Enable Minecraft with Parental Controls

2

0

My kids (somehow) talked me into installing Minecraft on my iMac. I have separate accounts for them with the Parental Controls feature enabled for each account. When they start up Minecraft on their account it prompts for admin access as expected. If I enter my username/password and click 'Allow Always' the dialog goes away for a couple of seconds then pops back up. If I click 'Allow Once' the games starts up and they can play.

How can I allow them to always play without requiring me to come over and enter my info?

Lili

Posted 2013-03-21T13:38:01.567

Reputation: 145

I'm not sure that it's enough for a proper answer, but you could just extract the minecraft.jar file from the minecraft.zip (or grab it directly from the website, under 'Minecraft for Linux / Other'), and set it up with some kind of launcher so that your kids can run it locally.

– evilsoup – 2013-03-21T14:45:26.690

Answers

0

I had a similar issue and this thread on Ask Different.se helped me to solve it. Instead of creating a new script named MyMinecraft as one answer suggested I modified the Java loader.

First I backed up the JavaApplicationStub file. Then I created a new script with that same name and edited the contents to be:

#!/bin/bash
java -jar -Xms512m -Xmx1024m /Applications/Minecraft.app/Contents/Resources/Java/MinecraftLauncher.jar

Then made that file executable for all users:

chmod a+x JavaApplicationStub

This allowed Minecraft to load for me without the prompt.

Brad Patton

Posted 2013-03-21T13:38:01.567

Reputation: 9 939

Unfortunately, this file doesn't exist anymore. – Cinder Biscuits – 2019-04-29T22:09:31.293

0

You might want to manually approve the java runtime, and minecraft by going into the preferences and adding it to the list. I'm not sure if the JRE can be individually approved though, but you can always try.

Astrognome

Posted 2013-03-21T13:38:01.567

Reputation: 46