diff --git a/src/java/com/threerings/presents/server/RebootManager.java b/src/java/com/threerings/presents/server/RebootManager.java index 09950da27..8296ff55f 100644 --- a/src/java/com/threerings/presents/server/RebootManager.java +++ b/src/java/com/threerings/presents/server/RebootManager.java @@ -104,7 +104,7 @@ public abstract class RebootManager } } - scheduleReboot(cal.getTimeInMillis(), "automatic"); + scheduleReboot(cal.getTimeInMillis(), AUTOMATIC_INITIATOR); return true; } @@ -358,4 +358,6 @@ public abstract class RebootManager * nextReboot field is changed, to prevent accidentally causing instant * server reboots. */ public static final int[] WARNINGS = { 30, 20, 15, 10, 5, 2 }; + + protected static final String AUTOMATIC_INITIATOR = "automatic"; }