Skip to content

Commit

Permalink
Default ships to a score of -1 instead of 0.
Browse files Browse the repository at this point in the history
  • Loading branch information
AltSysrq committed Sep 19, 2012
1 parent 57355d1 commit 825f0fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abserver.txt
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ CREATE TABLE ships (
-- The current "AI score" of the ship. Each time a ship-match job is
-- completed which tests this ship, mix the new value into this
-- (eg, aiscore = 0.9*aiscore + 0.1*$newscore)
aiscore FLOAT NOT NULL DEFAULT 0,
aiscore FLOAT NOT NULL DEFAULT -1,

PRIMARY KEY (shipid),
KEY fileid (fileid),
Expand Down

0 comments on commit 825f0fc

Please sign in to comment.