TG: New type of machine that goes under floor tiles, creates a constant beacon. Can

be disabled by... blowing it up, I guess. Doesn't need power.

Some minor bugfixes here and there. Added in telecomm circuits to the comm sat.
Revision: r2963
Author: 	 vageyenaman
This commit is contained in:
Ren Erthilo
2012-04-16 17:20:36 +01:00
parent a7daefcef8
commit 94aee703cd
3 changed files with 3 additions and 1 deletions

View File

@@ -70,6 +70,7 @@ Airlock index -> wire color are { 9, 4, 6, 7, 5, 8, 1, 2, 3 }.
var
aiControlDisabled = 0 //If 1, AI control is disabled until the AI hacks back in and disables the lock. If 2, the AI has bypassed the lock. If -1, the control is enabled but the AI had bypassed it earlier, so if it is disabled again the AI would have no trouble getting back in.
hackProof = 0 // if 1, this door can't be hacked by the AI
synDoorHacked = 0 // Has it been hacked? bool 1 = yes / 0 = no
synHacking = 0 // Is hack in process y/n?
secondsMainPowerLost = 0 //The number of seconds until power is restored.
@@ -812,7 +813,7 @@ Airlock index -> wire color are { 9, 4, 6, 7, 5, 8, 1, 2, 3 }.
canAIHack()
return ((src.aiControlDisabled==1) && (!src.isAllPowerCut()));
return ((src.aiControlDisabled==1) && (!hackProof) && (!src.isAllPowerCut()));
canSynControl()