Mining hotfix - atmospherics in the mine updated so the whole mine has the same properties (oxy, nitrogen, temperature) as space.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@838 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
baloh.matevz
2011-01-12 20:40:12 +00:00
parent d716d8a6c3
commit 335a4cfd53
+8 -1
View File
@@ -21,9 +21,12 @@
name = "Rock"
icon = 'walls.dmi'
icon_state = "rock"
oxygen = 0
nitrogen = 0
opacity = 1
density = 1
blocks_air = 1
temperature = TCMB
var/mineralName = ""
var/mineralAmt = 0
var/spread = 0 //will the seam spread?
@@ -265,6 +268,9 @@
name = "Asteroid"
icon = 'floors.dmi'
icon_state = "asteroid"
oxygen = 0
nitrogen = 0
temperature = TCMB
var/seedName = "" //Name of the seed it contains
var/seedAmt = 0 //Ammount of the seed it contains
var/dug = 0 //0 = has not yet been dug, 1 = has already been dug
@@ -1246,6 +1252,7 @@
return
return
/*
/obj/machinery/mineral/mint/process()
if (src.output && src.input)
var/obj/item/stack/sheet/O
@@ -1272,7 +1279,7 @@
if (istype(O,/obj/item/stack/sheet/clown))
amt_clown += 100
del(O)
*/
/obj/machinery/mineral/mint/attack_hand(user as mob)