@tarmost
With respect to change the game automatically change the time of the forecast, this has been fixed in version 1.8 as follows:
In table prediction had the condition:
'wwhen' timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
It was modified to:
'wwhen' timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
And in the same admin.class wcp-file condition was included:
// Remove auto update from prediction table.
if (!empty($installed_ver) && $installed_ver == "1.5") {
$sql = "ALTER TABLE <code>{$wpdb->prefix}{$this->prefix}prediction</code> CHANGE <code>wwhen</code> <code>wwhen</code> TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP";
$wpdb->query($sql);
update_option($this->prefix.'db_version', '1.8');
}
I believe this ALTER TABLE failed. I’ll try to release a fix today, but if you want to get ahead, just do it directly in the database.