mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +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)
|
||||
ore_glass--;
|
||||
new /obj/item/stack/sheet/glass(output.loc)
|
||||
feedback_inc("mining_glass_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -248,7 +247,6 @@
|
||||
ore_glass--;
|
||||
ore_iron--;
|
||||
new /obj/item/stack/sheet/rglass(output.loc)
|
||||
feedback_inc("mining_rglass_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -256,7 +254,6 @@
|
||||
if (ore_gold > 0)
|
||||
ore_gold--;
|
||||
new /obj/item/stack/sheet/gold(output.loc)
|
||||
feedback_inc("mining_gold_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -264,7 +261,6 @@
|
||||
if (ore_silver > 0)
|
||||
ore_silver--;
|
||||
new /obj/item/stack/sheet/silver(output.loc)
|
||||
feedback_inc("mining_silver_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -272,7 +268,6 @@
|
||||
if (ore_diamond > 0)
|
||||
ore_diamond--;
|
||||
new /obj/item/stack/sheet/diamond(output.loc)
|
||||
feedback_inc("mining_diamond_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -280,7 +275,6 @@
|
||||
if (ore_plasma > 0)
|
||||
ore_plasma--;
|
||||
new /obj/item/stack/sheet/plasma(output.loc)
|
||||
feedback_inc("mining_plasma_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -288,7 +282,6 @@
|
||||
if (ore_uranium > 0)
|
||||
ore_uranium--;
|
||||
new /obj/item/stack/sheet/uranium(output.loc)
|
||||
feedback_inc("mining_uranium_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -296,7 +289,6 @@
|
||||
if (ore_iron > 0)
|
||||
ore_iron--;
|
||||
new /obj/item/stack/sheet/metal(output.loc)
|
||||
feedback_inc("mining_iron_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -305,7 +297,6 @@
|
||||
ore_iron--;
|
||||
ore_plasma--;
|
||||
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
|
||||
on = 0
|
||||
continue
|
||||
@@ -313,7 +304,6 @@
|
||||
if (ore_clown > 0)
|
||||
ore_clown--;
|
||||
new /obj/item/stack/sheet/clown(output.loc)
|
||||
feedback_inc("mining_clown_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
@@ -321,7 +311,6 @@
|
||||
if (ore_adamantine > 0)
|
||||
ore_adamantine--;
|
||||
new /obj/item/stack/sheet/adamantine(output.loc)
|
||||
feedback_inc("mining_adamantine_produced",1)
|
||||
else
|
||||
on = 0
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user