Skip to content

Commit

Permalink
adjusts Bitrunning rewards based on feedback and testing (#4681)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrbisAnima authored and StealsThePRs committed Dec 17, 2024
1 parent 4a46330 commit fdb4529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/bitrunning/server/loot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

spark_at_location(cache) // abracadabra!
qdel(cache) // and it's gone!
SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points * 2) // NOVA EDIT CHANGE - Original : SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points)
SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points * 1.5) // NOVA EDIT CHANGE - Original : SEND_SIGNAL(src, COMSIG_BITRUNNER_DOMAIN_COMPLETE, cache, generated_domain.reward_points)

points += (generated_domain.reward_points * 2) // NOVA EDIT CHANGE - Original : points += generated_domain.reward_points
points += generated_domain.reward_points
playsound(src, 'sound/machines/terminal/terminal_success.ogg', 30, vary = TRUE)

var/bonus = calculate_rewards()
Expand Down

0 comments on commit fdb4529

Please sign in to comment.