Skip to content

Commit cd00e3a

Browse files
authored
Merge pull request #50 from nick-biles/terrafold_patch
Terrafold patch
2 parents 8f2ed15 + c7d8904 commit cd00e3a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Terrafold/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@
342342
</div>
343343

344344
<div class="showthis">
345-
Sends .01% of orbiting resources to the planet.<br>
345+
Sends .001% of orbiting resources to the planet.<br>
346346
Dirt gets added to base land.<br>
347347
</div>
348348
</div>
@@ -428,4 +428,4 @@
428428
<script src="UIClasses/ProgressBar.js"></script>
429429
<script src="hotkeys.js"></script>
430430
<script src="saving.js"></script>
431-
</html>
431+
</html>

Terrafold/view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ function View() {
334334
var orbitSendString = "";
335335
for(var i = 0; i < game.spaceStation.orbiting.length; i++) {
336336
orbitString += intToString(game.spaceStation.orbiting[i].amount) + " " + game.spaceStation.orbiting[i].type;
337-
orbitSendString += intToString(game.spaceStation.orbiting[i].amount / 10000, 4) + " " + game.spaceStation.orbiting[i].type;
337+
orbitSendString += intToString(game.spaceStation.orbiting[i].amount / 100000, 4) + " " + game.spaceStation.orbiting[i].type;
338338
if(i !== game.spaceStation.orbiting.length - 1) {
339339
orbitString += ", ";
340340
orbitSendString += ", ";

0 commit comments

Comments
 (0)