++ =/= + 1

This commit is contained in:
Alonefromhell
2018-10-22 14:38:40 +02:00
parent a7715c7d1f
commit 8a023482a4
@@ -98,7 +98,7 @@
if(holder.has_reagent("stabilizing_agent"))
return
var/turf/simulated/T = get_turf(holder.my_atom)
goonchem_vortex(T, 1, min(10, created_volume), min(11, created_volume++))
goonchem_vortex(T, 1, min(10, created_volume), min(11, created_volume + 1))
holder.remove_reagent("sorium", created_volume)
/datum/chemical_reaction/sorium_vortex
@@ -110,7 +110,7 @@
/datum/chemical_reaction/sorium_vortex/on_reaction(datum/reagents/holder, created_volume)
var/turf/simulated/T = get_turf(holder.my_atom)
goonchem_vortex(T, 1, min(10, created_volume), min(11, created_volume++))
goonchem_vortex(T, 1, min(10, created_volume), min(11, created_volume + 1))
/datum/chemical_reaction/liquid_dark_matter
name = "Liquid Dark Matter"
@@ -123,7 +123,7 @@
if(holder.has_reagent("stabilizing_agent"))
return
var/turf/simulated/T = get_turf(holder.my_atom)
goonchem_vortex(T, 0, min(10, created_volume), min(11, created_volume++))
goonchem_vortex(T, 0, min(10, created_volume), min(11, created_volume + 1))
holder.remove_reagent("liquid_dark_matter", created_volume)
/datum/chemical_reaction/ldm_vortex
@@ -135,7 +135,7 @@
/datum/chemical_reaction/ldm_vortex/on_reaction(datum/reagents/holder, created_volume)
var/turf/simulated/T = get_turf(holder.my_atom)
goonchem_vortex(T, 0, min(10, created_volume), min(11, created_volume++))
goonchem_vortex(T, 0, min(10, created_volume), min(11, created_volume + 1))
/datum/chemical_reaction/blackpowder
name = "Black Powder"