blob: ed2e9b16585be9fffa8b1e92faaf699623a12f53 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001int access_rights(string user, string file) {
Zesstra1501b102017-04-29 11:09:31 +02002 if(user == "notstrom" && file == "aquarium.c")
3 return 1;
MG Mud User88f12472016-06-24 23:31:02 +02004 return 0;
5}