Quote (Decadence @ May 5 2012 08:29pm)
No, it's just more coding. Bigger work load on Paul when all you have to do is add him back to your list.
this is simple to code... would take 1-2 lines max
lets assume when you block someone it calls a method called "block"
current:
..
var profile = (w/e profile identifier is used)
me.blocklist.add(profile);
..
current pm check:
...
if (profile.blocklist.contains(me)) {
MsgBox.show("You may not pm this user");
return;
}
....
change that to:
if (profile.blocklist.contains(me)) {
MsgBox.show("You may not pm this user");
return;
} else if (me.blocklist.contains(profile)) {
MsgBox.Show("You may not pm users you have blocked");
return;
}
simple fix, and should be implemented
This post was edited by Mens on Jul 2 2012 03:25pm