Skip to content

Commit

Permalink
bug fix done (#11124)
Browse files Browse the repository at this point in the history
  • Loading branch information
XeonMations authored Jun 28, 2024
1 parent b1e6e2f commit 4e69dda
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions code/game/objects/items/devices/explosive_flashbulb.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/obj/item/assembly/flash/bomb
bulb = /obj/item/flashbulb/bomb

/obj/item/flashbulb/bomb
name = "suspicious flashbulb"
desc = "A powerful flashbulb that looks slightly off, with strange wires running out the back."
Expand Down
2 changes: 1 addition & 1 deletion code/modules/assembly/flash.dm
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@

/obj/item/assembly/flash/Initialize(mapload)
. = ..()
bulb = new bulb
bulb = new bulb(src)

/obj/item/assembly/flash/examine(mob/user)
. = ..()
Expand Down
6 changes: 3 additions & 3 deletions code/modules/uplink/uplink_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1393,9 +1393,9 @@ GLOBAL_LIST_INIT(illegal_tech_blacklist, typecacheof(list(
purchasable_from = (UPLINK_NUKE_OPS | UPLINK_CLOWN_OPS)

/datum/uplink_item/explosives/explosive_flashbulbs
name = "Explosive Flashbulb"
desc = "A flashbulb stuffed with explosives that when used by an oblivious security officers, will cause a violent explosion."
item = /obj/item/flashbulb/bomb
name = "Explosive Flash"
desc = "A flash with a bulb stuffed with explosives that when used by an oblivious security officers, will cause a violent explosion."
item = /obj/item/assembly/flash/bomb
cost = 1
surplus = 8

Expand Down

0 comments on commit 4e69dda

Please sign in to comment.