Skip to content

Commit

Permalink
Excessive timer toned down on Library.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemming552 committed Mar 8, 2013
1 parent 028deee commit 0269893
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Lacuna.pm
Expand Up @@ -7,7 +7,7 @@ use Config::JSON;

useall __PACKAGE__;

our $VERSION = 3.0882;
our $VERSION = 3.0883;

my $config = Config::JSON->new('/data/Lacuna-Server/etc/lacuna.conf');
my $db = Lacuna::DB->connect($config->get('db/dsn'),$config->get('db/username'),$config->get('db/password'), { mysql_enable_utf8 => 1});
Expand Down
2 changes: 1 addition & 1 deletion lib/Lacuna/RPC/Building/LibraryOfJith.pm
Expand Up @@ -26,7 +26,7 @@ sub research_species {
confess [1010, 'The researchers are busy now. Come back later.'];
}

$building->start_work({}, (60 * 60 * 90) - ($building->level * 3));
$building->start_work({}, 15 + ((60 * 60) * ((30-$building->level)/30)));

return {
status => $self->format_status($empire, $building->body),
Expand Down
3 changes: 3 additions & 0 deletions var/www/public/changes.txt
@@ -1,3 +1,6 @@
3.0883:
- Fix: Library timer was too excessive.

3.0882:
- Fix: Timers on int ministries get zeroed on flipped planets.
- Mod: Halls no longer need x+1 free spaces to upgrade a level x building
Expand Down

0 comments on commit 0269893

Please sign in to comment.