Skip to content

Commit

Permalink
Remove Arch Min limit on number of plans created at a time.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcbride committed Jan 17, 2016
1 parent b157031 commit 30b2956
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 0 additions & 3 deletions lib/Lacuna/RPC/Building/Archaeology.pm
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ sub search_for_glyph {
sub assemble_glyphs {
my ($self, $session_id, $building_id, $glyphs, $quantity) = @_;
$quantity = defined $quantity ? $quantity : 1;
if ($quantity > 5000) {
confess [1011, "You can only assemble up to 5000 plans at a time"];
}
if ($quantity <= 0 or int($quantity) != $quantity) {
confess [1001, "Quantity must be a positive integer"];
}
Expand Down
1 change: 1 addition & 0 deletions var/www/public/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Fix: SSL resources and timers use lowest level of all tiles.
- Fix: Spies start infiltrating when they arrive.
- Fix: Burning PP spies really does make planet unhappy.
- Mod: Remove limit for number of plans created at a time in Arch. Min.

3.0917:
- Fix: Recalc stats when building 1+x plans.
Expand Down

0 comments on commit 30b2956

Please sign in to comment.