Merge branch 'master' into abandonedcrates

This commit is contained in:
mwerezak
2015-09-10 15:21:15 -04:00
7 changed files with 26 additions and 8 deletions

View File

@@ -413,7 +413,7 @@ its easier to just keep the beam vertical.
return
src.germ_level = 0
if(istype(blood_DNA, /list))
del(blood_DNA)
blood_DNA.Cut()
return 1

View File

@@ -406,7 +406,6 @@ var/list/turret_icons
/obj/machinery/porta_turret/ex_act(severity)
switch (severity)
if (1)
del(src)
qdel(src)
if (2)
if (prob(25))
@@ -701,7 +700,7 @@ var/list/turret_icons
playsound(loc, 'sound/items/Crowbar.ogg', 75, 1)
user << "<span class='notice'>You dismantle the turret construction.</span>"
new /obj/item/stack/material/steel( loc, 5)
qdel(src) // qdel
qdel(src)
return
if(1)

View File

@@ -132,7 +132,8 @@
name = "flare"
desc = "A red Nanotrasen issued flare. There are instructions on the side, it reads 'pull cord, make light'."
w_class = 2.0
brightness_on = 7 // Pretty bright.
brightness_on = 8 // Pretty bright.
light_power = 3
light_color = "#e58775"
icon_state = "flare"
item_state = "flare"

View File

@@ -167,7 +167,7 @@
user << "<span class='danger'>The crate's anti-tamper system activates!</span>"
var/turf/T = get_turf(src.loc)
explosion(T, 0, 0, 1, 2)
del(src)
qdel(src)
/obj/structure/closet/crate/secure/loot/proc/check_input(var/input)
if(length(input) != codelen)

View File

@@ -842,7 +842,7 @@ var/list/ai_verbs_default = list(
// Cleaner proc for creating powersupply for an AI.
/mob/living/silicon/ai/proc/create_powersupply()
if(psupply)
del(psupply)
qdel(psupply)
psupply = new/obj/machinery/ai_powersupply(src)
#undef AI_CHECK_WIRELESS

View File

@@ -1170,7 +1170,7 @@ obj/machinery/power/apc/proc/autoset(var/val, var/on)
switch(severity)
if(1.0)
//set_broken() //now Del() do what we need
//set_broken() //now qdel() do what we need
if (cell)
cell.ex_act(1.0) // more lags woohoo
qdel(src)

View File

@@ -0,0 +1,18 @@
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
author: HarpyEagle
delete-after: True
changes:
- tweak: "Made flares brighter."