diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm index 20052bd085c1e..2c031da95e0d7 100644 --- a/code/modules/reagents/chemistry/machinery/chem_master.dm +++ b/code/modules/reagents/chemistry/machinery/chem_master.dm @@ -271,7 +271,7 @@ "Maximum [vol_each_max] units per item.", "How many units to fill?", vol_each_max)) - vol_each = CLAMP(round(vol_each), 0, vol_each_max) + vol_each = CLAMP(vol_each, 0, vol_each_max) if(vol_each <= 0) return FALSE // Get item name diff --git a/tgui-next/packages/tgui/interfaces/Cargo.js b/tgui-next/packages/tgui/interfaces/Cargo.js index 32a6ae845ce14..90e2a9ac81e48 100644 --- a/tgui-next/packages/tgui/interfaces/Cargo.js +++ b/tgui-next/packages/tgui/interfaces/Cargo.js @@ -162,6 +162,8 @@ const Catalog = props => { content={(data.self_paid ? Math.round(pack.cost * 1.1) : pack.cost) + ' credits'} + tooltip={pack.desc} + tooltipPosition="left" onClick={() => act(ref, 'add', { id: pack.id, })} /> diff --git a/tgui-next/packages/tgui/interfaces/CrewConsole.js b/tgui-next/packages/tgui/interfaces/CrewConsole.js index 0cf03d572ab0d..daa27cb7de577 100644 --- a/tgui-next/packages/tgui/interfaces/CrewConsole.js +++ b/tgui-next/packages/tgui/interfaces/CrewConsole.js @@ -92,7 +92,7 @@ export const CrewConsole = props => { color={healthToColor( sensor.oxydam, sensor.toxdam, - sensor.brutedam, + sensor.burndam, sensor.brutedam)} />