Merge pull request #10685 from mwerezak/skipjack

Fixes
This commit is contained in:
PsiOmegaDelta
2015-08-17 06:56:50 +02:00
7 changed files with 125 additions and 116 deletions
+1
View File
@@ -43,6 +43,7 @@
return
/obj/structure/girder/proc/reset_girder()
anchored = 1
cover = initial(cover)
health = min(health,initial(health))
state = 0
+8
View File
@@ -294,6 +294,10 @@
set category = "Object"
set src in oview(1)
// TODO : Change to incapacitated() on merge.
if(usr.stat || usr.lying || usr.resting || usr.buckled)
return 0
if(anchored)
usr << "It is fastened to the floor therefore you can't rotate it!"
return 0
@@ -310,6 +314,10 @@
set category = "Object"
set src in oview(1)
// TODO : Change to incapacitated() on merge.
if(usr.stat || usr.lying || usr.resting || usr.buckled)
return 0
if(anchored)
usr << "It is fastened to the floor therefore you can't rotate it!"
return 0