BlogNomic has moved!

The game is now running at blognomic.com

Thursday, October 09, 2003

Proposal: No such thing

Add to Rule 12 - Master Control Program Source Code

// Recalibrate instruments. 

loop(robots)
{
if (power(loop_robot) < 0)
{
power(loop_robot) = 0;
}
}


Change the vent excess power code to

// Vent excess power. 

loop(robots)
{
if (power(loop_robot) > (100*(1+number_of_batteries(loop_robot))))
{
power(loop_robot) = (100*(1+number_of_batteries(loop_robot)));
}
}


If Proposal:Deactivation clarification [Trivial] passed, then remove the phrase "less than or equal to" from paragraph 5 of Rule 2 - Robots

This prevents a robot from having negative power and closes a loop hole which would allow a robot to have more than their maximum power by not running the MCP.

Enacted by Squirrel, 11th Oct.