Stacks can now build on any simulated turf

This commit lightens the restrictions on stacks, so that they can now
build on any type of /turf/simulated instead of requiring
/turf/simulated/floor.

The primary intent of this commit is allowing people to build on shuttles,
as they are now considerably less "magical", given that they have
lighting, and glass sheets + metal rods already ignore these restrictions.
This commit is contained in:
Tigercat2000
2015-05-16 11:35:49 -07:00
parent 56e3880fb6
commit 7eac7651db
+1 -1
View File
@@ -126,7 +126,7 @@
if (R.one_per_turf && (locate(R.result_type) in usr.loc))
usr << "\red There is another [R.title] here!"
return
if (R.on_floor && !istype(usr.loc, /turf/simulated/floor))
if (R.on_floor && !istype(usr.loc, /turf/simulated))
usr << "\red \The [R.title] must be constructed on the floor!"
return
if (R.time)