We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90dff31 commit 6a83b35Copy full SHA for 6a83b35
src/core/execution/DonateGoldExecution.ts
@@ -79,7 +79,6 @@ export class DonateGoldExecution implements Execution {
79
calculateRelationUpdate(goldSent: Gold): number {
80
const chunkSize = this.getGoldChunkSize();
81
// Calculate how many complete chunks were donated
82
- // BigInt division automatically truncates (integer division)
83
const chunks = Number(goldSent / chunkSize);
84
// Each chunk gives 5 relation points
85
const relationUpdate = chunks * 5;
0 commit comments