mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 12:43:13 +00:00
Discontinuing the feedback logging of mineral production.
At the time when this was uploaded the 30-day logging information was... Iron sheets produced: 75125 Steel sheets produced: 20548 Glass panes produced: 16057 Reinforced glass panes produced: 535 Gold ingots produced: 14006 Silver ingots produced: 13142 Diamonds produced: 5835 Uranium bars produced: 12604 Plasma bars produced: 38098 Bananium produced: 421 Adamantine produced: 0 git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3063 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -239,7 +239,6 @@
|
|||||||
if (ore_glass > 0)
|
if (ore_glass > 0)
|
||||||
ore_glass--;
|
ore_glass--;
|
||||||
new /obj/item/stack/sheet/glass(output.loc)
|
new /obj/item/stack/sheet/glass(output.loc)
|
||||||
feedback_inc("mining_glass_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -248,7 +247,6 @@
|
|||||||
ore_glass--;
|
ore_glass--;
|
||||||
ore_iron--;
|
ore_iron--;
|
||||||
new /obj/item/stack/sheet/rglass(output.loc)
|
new /obj/item/stack/sheet/rglass(output.loc)
|
||||||
feedback_inc("mining_rglass_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -256,7 +254,6 @@
|
|||||||
if (ore_gold > 0)
|
if (ore_gold > 0)
|
||||||
ore_gold--;
|
ore_gold--;
|
||||||
new /obj/item/stack/sheet/gold(output.loc)
|
new /obj/item/stack/sheet/gold(output.loc)
|
||||||
feedback_inc("mining_gold_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -264,7 +261,6 @@
|
|||||||
if (ore_silver > 0)
|
if (ore_silver > 0)
|
||||||
ore_silver--;
|
ore_silver--;
|
||||||
new /obj/item/stack/sheet/silver(output.loc)
|
new /obj/item/stack/sheet/silver(output.loc)
|
||||||
feedback_inc("mining_silver_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -272,7 +268,6 @@
|
|||||||
if (ore_diamond > 0)
|
if (ore_diamond > 0)
|
||||||
ore_diamond--;
|
ore_diamond--;
|
||||||
new /obj/item/stack/sheet/diamond(output.loc)
|
new /obj/item/stack/sheet/diamond(output.loc)
|
||||||
feedback_inc("mining_diamond_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -280,7 +275,6 @@
|
|||||||
if (ore_plasma > 0)
|
if (ore_plasma > 0)
|
||||||
ore_plasma--;
|
ore_plasma--;
|
||||||
new /obj/item/stack/sheet/plasma(output.loc)
|
new /obj/item/stack/sheet/plasma(output.loc)
|
||||||
feedback_inc("mining_plasma_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -288,7 +282,6 @@
|
|||||||
if (ore_uranium > 0)
|
if (ore_uranium > 0)
|
||||||
ore_uranium--;
|
ore_uranium--;
|
||||||
new /obj/item/stack/sheet/uranium(output.loc)
|
new /obj/item/stack/sheet/uranium(output.loc)
|
||||||
feedback_inc("mining_uranium_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -296,7 +289,6 @@
|
|||||||
if (ore_iron > 0)
|
if (ore_iron > 0)
|
||||||
ore_iron--;
|
ore_iron--;
|
||||||
new /obj/item/stack/sheet/metal(output.loc)
|
new /obj/item/stack/sheet/metal(output.loc)
|
||||||
feedback_inc("mining_iron_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -305,7 +297,6 @@
|
|||||||
ore_iron--;
|
ore_iron--;
|
||||||
ore_plasma--;
|
ore_plasma--;
|
||||||
new /obj/item/stack/sheet/plasteel(output.loc)
|
new /obj/item/stack/sheet/plasteel(output.loc)
|
||||||
feedback_inc("mining_steel_produced",1) //should be plasteel, but that'd break Erro's stat logging -- Urist
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -313,7 +304,6 @@
|
|||||||
if (ore_clown > 0)
|
if (ore_clown > 0)
|
||||||
ore_clown--;
|
ore_clown--;
|
||||||
new /obj/item/stack/sheet/clown(output.loc)
|
new /obj/item/stack/sheet/clown(output.loc)
|
||||||
feedback_inc("mining_clown_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
@@ -321,7 +311,6 @@
|
|||||||
if (ore_adamantine > 0)
|
if (ore_adamantine > 0)
|
||||||
ore_adamantine--;
|
ore_adamantine--;
|
||||||
new /obj/item/stack/sheet/adamantine(output.loc)
|
new /obj/item/stack/sheet/adamantine(output.loc)
|
||||||
feedback_inc("mining_adamantine_produced",1)
|
|
||||||
else
|
else
|
||||||
on = 0
|
on = 0
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user