From 75913d11086ad854de8899d69f733655b024bc6a Mon Sep 17 00:00:00 2001 From: KoboldCommando Date: Mon, 25 Sep 2023 11:22:28 -0400 Subject: [PATCH] adds instructions to description --- code/modules/hydroponics/hydroitemdefines.dm | 2 +- code/modules/hydroponics/hydroponics.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index 0e2a60db34db..483e8ab772c3 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -181,7 +181,7 @@ returned_message += "\nPest level: [span_notice("[scanned_tray.pestlevel] / [MAX_TRAY_PESTS]")]" returned_message += "\nToxicity level: [span_notice("[scanned_tray.toxic] / [MAX_TRAY_TOXINS]")]" returned_message += "\nWater level: [span_notice("[scanned_tray.waterlevel] / [scanned_tray.maxwater]")]" - returned_message += "\nNutrition level: [span_notice("[round(scanned_tray.reagents.total_volume)] / [scanned_tray.maxnutri]")]" + returned_message += "\nNutrition level: [span_notice("[round(scanned_tray.reagents.total_volume)] / [scanned_tray.maxnutri]")] Right-click to empty." if(scanned_tray.yieldmod != 1) returned_message += "\nYield modifier on harvest: [span_notice("[scanned_tray.yieldmod]x")]" diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index fc319d4e24d0..3e76a880430a 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -614,7 +614,7 @@ . += span_info("It's empty.") . += span_info("Water: [waterlevel]/[maxwater].") - . += span_info("Nutrient: [round(reagents.total_volume)]/[maxnutri].") + . += span_info("Nutrient: [round(reagents.total_volume)]/[maxnutri]. Right-click to empty.") if(self_sustaining) . += span_info("The tray's self-sustenance is active, protecting it from species mutations, weeds, and pests.") if(self_growing)