Spellchecking.

This commit is contained in:
Fermi
2019-06-16 12:34:37 +01:00
parent 3caadb2009
commit 2df7e208b5
4 changed files with 4 additions and 6 deletions
+1 -2
View File
@@ -926,10 +926,9 @@
if (R.id == reagent)
if((total_volume - amount) <= 0)//Because this can result in 0, I don't want it to crash.
pH = 7
/*In practice this is really confusing and players feel like it randomly melts their beakers.
//In practice this is really confusing and players feel like it randomly melts their beakers, but I'm not sure how else to handle it. We'll see how it goes and I can remove this if it confuses people.
else
pH = (((pH - R.pH) / total_volume) * amount) + pH
*/
if(istype(my_atom, /obj/item/reagent_containers/))
var/obj/item/reagent_containers/RC = my_atom
RC.pH_check()//checks beaker resilience)