Merge conflict fix

This commit is contained in:
Firecage
2016-01-17 19:15:30 +02:00
318 changed files with 4760 additions and 4221 deletions
+2 -5
View File
@@ -52,6 +52,7 @@
circuit = /obj/item/weapon/circuitboard/mining_shuttle
shuttleId = "mining"
possible_destinations = "mining_home;mining_away"
no_destination_swap = 1
/*********************Pickaxe & Drills**************************/
@@ -257,11 +258,7 @@
A.nitrogen = 82
A.carbon_dioxide = 0
A.toxins = 0
A.air.oxygen = 21
A.air.carbon_dioxide = 0
A.air.nitrogen = 82
A.air.toxins = 0
A.air.temperature = 293.15
A.air.copy_from_turf(A)
SSair.add_to_active(A)
A.overlays.Cut()
var/area/Z = get_area(A)
+2 -1
View File
@@ -16,6 +16,7 @@ var/global/list/rockTurfEdgeCache
opacity = 1
density = 1
blocks_air = 1
layer = TURF_LAYER + 0.05
temperature = TCMB
var/environment_type = "asteroid"
var/turf/simulated/floor/plating/asteroid/turf_type = /turf/simulated/floor/plating/asteroid //For basalt vs normal asteroid
@@ -89,7 +90,7 @@ var/global/list/rockTurfEdgeCache
icon_state = "rock"
return
/turf/simulated/mineral/proc/Spread(turf/T)
/turf/simulated/mineral/Spread(turf/T)
new src.type(T)
/turf/simulated/mineral/random
+5 -2
View File
@@ -341,6 +341,9 @@
/obj/item/weapon/coin/attack_self(mob/user)
if(cooldown < world.time - 15)
if(string_attached) //does the coin have a wire attached
user << "<span class='warning'>The coin won't flip very well with something attached!</span>" //Tell user it will not flip
return //do not flip the coin
var/coinflip = pick(sideslist)
cooldown = world.time
flick("coin_[cmineral]_flip", src)
@@ -350,5 +353,5 @@
sleep(15)
if(loc == oldloc && user && !user.incapacitated())
user.visible_message("[user] has flipped [src]. It lands on [coinflip].", \
"<span class='notice'>You flip [src]. It lands on [coinflip].</span>", \
"<span class='italics'>You hear the clattering of loose change.</span>")
"<span class='notice'>You flip [src]. It lands on [coinflip].</span>", \
"<span class='italics'>You hear the clattering of loose change.</span>")