Skip to content

Commit

Permalink
Not blow up on click now
Browse files Browse the repository at this point in the history
  • Loading branch information
SerynEngi committed Sep 26, 2023
1 parent 506f3f7 commit 7184456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nsv13/code/modules/power/reactor/rbmk.dm
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ The reactor CHEWS through moderator. It does not do this slowly. Be very careful
var/datum/radio_frequency/radio_connection
var/on = FALSE

/obj/machinery/computer/reactor/pump/AltClick(mob/user)
/obj/machinery/computer/reactor/pump/attack_hand(mob/living/user/)
. = ..()
var/newPressure = input(user, "Set new output pressure (kPa)", "Remote pump control", null) as num
if(!newPressure)
Expand All @@ -731,7 +731,7 @@ The reactor CHEWS through moderator. It does not do this slowly. Be very careful
. = ..()
attack_hand(user)

/obj/machinery/computer/reactor/pump/attack_hand(mob/living/user)
/obj/machinery/computer/reactor/pump/AltClick(mob/user)
. = ..()
if(!is_operational)
return FALSE
Expand Down

0 comments on commit 7184456

Please sign in to comment.