-
Notifications
You must be signed in to change notification settings - Fork 233
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
Band-aid fix for fusion instantly ruining everything #1604
Conversation
Absolucy
commented
Apr 7, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
guh
@@ -1228,7 +1228,7 @@ | |||
if(prob(PERCENT(particle_chance))) | |||
location.fire_nuclear_particle() | |||
var/rad_power = max((FUSION_RAD_COEFFICIENT/instability) + 5000, 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reduce this to +50 not +5000 wtf LMAO
@@ -1228,7 +1228,7 @@ | |||
if(prob(PERCENT(particle_chance))) | |||
location.fire_nuclear_particle() | |||
var/rad_power = max((FUSION_RAD_COEFFICIENT/instability) + 5000, 0) | |||
radiation_pulse(location,rad_power) | |||
radiation_pulse(location, min(rad_power, 7), intensity = rad_power) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should probably also raise this in turn.