Smoothing fixes (#2163)

* Fix some bad smoothing

* Fix unsimulated objects being vaporized by bluespace

* Fix admin turf-delete

* Minor lighting responsiveness tweak
This commit is contained in:
Lohikar
2017-05-02 19:59:22 -05:00
committed by LordFowl
parent f6dc33a465
commit 149aee4afe
5 changed files with 218 additions and 199 deletions
+5
View File
@@ -604,6 +604,11 @@ Traitors and the like can also be revived with the previous role mostly intact.
message_admins("[key_name_admin(usr)] deleted [O] at ([O.x],[O.y],[O.z])", 1)
feedback_add_details("admin_verb","DEL") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
if (isturf(O)) // Can't qdel a turf.
var/turf/T = O
T.ChangeTurf(/turf/space)
return
if (action == "Yes")
qdel(O, TRUE)
else