Difference between revisions of "Talk:Chamber"

From Kolmafia
Jump to navigation Jump to search
imported>Heeheehee
(Created page with ' if ( command.equals( "tower" ) || command.equals( "guardians" ) || command.equals( "chamber" ) ) { SorceressLairManager.fightAllTowerGuardians(); return; } seems to be…')
 
imported>Bale
 
Line 5: Line 5:
 
  }
 
  }
 
seems to be the relevant Java ... which also seems to imply that this function is identical to guardians()...? (Looking in RuntimeLibrary.java, it's fairly obvious that these functions are just passed to the CLI.) --[[User:Heeheehee|Heeheehee]] 05:04, 1 May 2010 (UTC)
 
seems to be the relevant Java ... which also seems to imply that this function is identical to guardians()...? (Looking in RuntimeLibrary.java, it's fairly obvious that these functions are just passed to the CLI.) --[[User:Heeheehee|Heeheehee]] 05:04, 1 May 2010 (UTC)
 +
 +
Ascended today, so I tried it out and you're right. Corrected the page to indicate what it actually does. --[[User:Bale|Bale]] 08:55, 2 May 2010 (UTC)

Latest revision as of 08:55, 2 May 2010

if ( command.equals( "tower" ) || command.equals( "guardians" ) || command.equals( "chamber" ) )
{
   SorceressLairManager.fightAllTowerGuardians();
   return;
}

seems to be the relevant Java ... which also seems to imply that this function is identical to guardians()...? (Looking in RuntimeLibrary.java, it's fairly obvious that these functions are just passed to the CLI.) --Heeheehee 05:04, 1 May 2010 (UTC)

Ascended today, so I tried it out and you're right. Corrected the page to indicate what it actually does. --Bale 08:55, 2 May 2010 (UTC)