Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the US total debt value (2024) #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Scripts/Define/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ var functions =
},
payUSDebt: function()
{
if(game.money.lt(22e12))
if(game.money.lt(34e12))
{
alert("You can't afford to pay off the debt right now.")
}
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ <h4>Offline Income</h4>
<p>That sure is a lot of Money. Maybe it is enough to buy the Moon?</p>
<div class="story-quote"><img src="Images/money.png"/><span>Richer than Rich</span></div>
<p>This is enough to pay off the US National debt.<br/>
<button @click="payUSDebt()">PAY ($ {{formatThousands(22e12, 1e100)}})</button></p>
<button @click="payUSDebt()">PAY ($ {{formatThousands(34e12, 1e100)}})</button></p>
</div>
<div v-if="storyDisplayed('lightEssence')">
<p>Yet another Essence found. This one glows a lot and is even bright, so bright that a few of them could light up
Expand Down