This commit is contained in:
mwerezak
2015-08-16 14:55:54 -04:00
parent 887a515483
commit f09b754a19

View File

@@ -294,6 +294,10 @@
set category = "Object" set category = "Object"
set src in oview(1) set src in oview(1)
// TODO : Change to incapacitated() on merge.
if(usr.stat || usr.lying || usr.resting || usr.buckled)
return 0
if(anchored) if(anchored)
usr << "It is fastened to the floor therefore you can't rotate it!" usr << "It is fastened to the floor therefore you can't rotate it!"
return 0 return 0
@@ -310,6 +314,10 @@
set category = "Object" set category = "Object"
set src in oview(1) set src in oview(1)
// TODO : Change to incapacitated() on merge.
if(usr.stat || usr.lying || usr.resting || usr.buckled)
return 0
if(anchored) if(anchored)
usr << "It is fastened to the floor therefore you can't rotate it!" usr << "It is fastened to the floor therefore you can't rotate it!"
return 0 return 0