Committing for QualityVan!

Fixes issue 458.

Changes singularity beacons to consume zero power but require a certain amount to function, check the attached wire rather than the area for that power, and most importantly, not work in space(normally).

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4399 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2012-08-14 13:59:21 +00:00
parent 517a0d8add
commit 755c98d8b6
2 changed files with 24 additions and 14 deletions
+2 -2
View File
@@ -576,7 +576,7 @@ mob/sd_ApplyLum(list/V, center = src)
if(isturf(loc))
V = view(luminosity,loc)
else
V = view(luminosity,src)
V = view(luminosity,get_turf(src))
. = ..(V, center)
mob/sd_StripLum(list/V, center = src)
@@ -584,7 +584,7 @@ mob/sd_StripLum(list/V, center = src)
if(isturf(loc))
V = view(luminosity,loc)
else
V = view(luminosity,src)
V = view(luminosity,get_turf(src))
. = ..(V, center)
mob/sd_ApplyLocalLum(list/affected)