gps and ore bag modsuit modules are now usable when suit is off (#67781)

gps and ore bag modsuit modules are now usable when suit is off
This commit is contained in:
Fikou
2022-06-16 16:29:44 +01:00
committed by GitHub
parent dc71def1b1
commit 0c288a3bc4
@@ -12,6 +12,7 @@
use_power_cost = DEFAULT_CHARGE_DRAIN * 0.2
incompatible_modules = list(/obj/item/mod/module/gps)
cooldown_time = 0.5 SECONDS
allowed_inactive = TRUE
/obj/item/mod/module/gps/Initialize(mapload)
. = ..()
@@ -172,6 +173,7 @@
use_power_cost = DEFAULT_CHARGE_DRAIN * 0.2
incompatible_modules = list(/obj/item/mod/module/orebag)
cooldown_time = 0.5 SECONDS
allowed_inactive = TRUE
/// The ores stored in the bag.
var/list/ores = list()