mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-21 20:20:33 +01:00
[MIRROR] The "Is This Thing On?" sci experiment will now actually accept any explosion... (#6694)
* Fix "Is This Thing On?" sci experiment to accept any explosion(#59966) ...Even those with negative devastation and/or heavy values (like IEDs, welders, fuel tanks). * The "Is This Thing On?" sci experiment will now actually accept any explosion... Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
@@ -17,9 +17,9 @@
|
||||
var/last_light
|
||||
|
||||
/datum/experiment/explosion/is_complete()
|
||||
return required_devastation <= last_devastation \
|
||||
&& required_heavy <= last_heavy \
|
||||
&& required_light <= last_light
|
||||
return (!required_devastation || required_devastation <= last_devastation) \
|
||||
&& (!required_heavy || required_heavy <= last_heavy) \
|
||||
&& (!required_light || required_light <= last_light)
|
||||
|
||||
/datum/experiment/explosion/check_progress()
|
||||
var/status_message = "You must record an explosion with ranges of at least \
|
||||
|
||||
Reference in New Issue
Block a user