Skip to content

Commit

Permalink
Add AAA COIL
Browse files Browse the repository at this point in the history
  • Loading branch information
TheImmortal committed Aug 9, 2016
1 parent 51f758f commit 4de3e3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/client-ladder.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@
'lcsuspecttest': 9,
'doublesoucurrent': 12,
'doublesoususpecttest': 12,
'monotype': 4
'monotype': 4,
'almostanyability': 6
}
});

Expand Down
1 change: 1 addition & 0 deletions ladder.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
elseif ($row['formatid'] == 'lcsuspecttest') echo number_format($N ? 40*$row['gxe']*pow(2.0,-9.0/$N) : 0,1,'.','');
elseif ($row['formatid'] == 'doublesoucurrent' || $row['formatid'] == 'doublesoususpecttest') echo number_format($N ? 40*$row['gxe']*pow(2.0,-12.0/$N) : 0,1,'.','');
elseif ($row['formatid'] == 'monotype') echo number_format($N ? 40*$row['gxe']*pow(2.0,-4.0/$N) : 0,1,'.','');
elseif ($row['formatid'] == 'almostanyability') echo number_format($N ? 40*$row['gxe']*pow(2.0,-6.0/$N) : 0,1,'.','');
else echo '--'; ?></td>
</tr>
<?php
Expand Down

0 comments on commit 4de3e3b

Please sign in to comment.