mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 03:55:05 +01:00
Fix plant reagent genes producing more chemicals than expected (#21126)
This commit is contained in:
@@ -168,7 +168,7 @@
|
||||
CRASH("[T] has no reagents.")
|
||||
|
||||
for(var/rid in reagents_add)
|
||||
var/amount = 1 + round(potency * reagents_add[rid], 1)
|
||||
var/amount = max(round(potency * reagents_add[rid], 1), 1)
|
||||
|
||||
var/list/data = null
|
||||
if(rid == "blood") // Hack to make blood in plants always O-
|
||||
|
||||
Reference in New Issue
Block a user