diff --git a/code/modules/migrations/SS13_Prefs/021-antag_objectives.dm b/code/modules/migrations/SS13_Prefs/021-antag_objectives.dm index f63518d5d12..99bac84e074 100644 --- a/code/modules/migrations/SS13_Prefs/021-antag_objectives.dm +++ b/code/modules/migrations/SS13_Prefs/021-antag_objectives.dm @@ -4,7 +4,7 @@ /datum/migration/sqlite/ss13_prefs/_021/up() if(!hasColumn("client","antag_objectives")) - return execute("ALTER TABLE `client` ADD COLUMN antag_objectives INTEGER DEFAULT 1") + return execute("ALTER TABLE `client` ADD COLUMN antag_objectives INTEGER DEFAULT 0") return TRUE /datum/migration/sqlite/ss13_prefs/_021/down()