From 08c1ce93f1f37d82cddb3373ae33dbe2aa932a2d Mon Sep 17 00:00:00 2001 From: izac112 Date: Thu, 28 Dec 2023 09:34:27 +0100 Subject: [PATCH] Update fixes --- tgui/packages/tgui/interfaces/Phorochem.jsx | 4 ++-- .../packages/tgui/interfaces/PrecisionEditor.jsx | 16 ++++++++-------- vorestation.dme | 1 - 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/tgui/packages/tgui/interfaces/Phorochem.jsx b/tgui/packages/tgui/interfaces/Phorochem.jsx index a421de84a90..073319bb3be 100644 --- a/tgui/packages/tgui/interfaces/Phorochem.jsx +++ b/tgui/packages/tgui/interfaces/Phorochem.jsx @@ -2,8 +2,8 @@ import { Button, LabeledList, ProgressBar, Section } from '../components'; import { useBackend } from '../backend'; import { Window } from '../layouts'; -export const Phorochem = (props, context) => { - const { act, data } = useBackend(context); +export const Phorochem = (props) => { + const { act, data } = useBackend(); const { intensity, phoron, message, timeLeft, timeLeftMax } = data; return ( diff --git a/tgui/packages/tgui/interfaces/PrecisionEditor.jsx b/tgui/packages/tgui/interfaces/PrecisionEditor.jsx index 4f8ccc76da6..9ff78b68771 100644 --- a/tgui/packages/tgui/interfaces/PrecisionEditor.jsx +++ b/tgui/packages/tgui/interfaces/PrecisionEditor.jsx @@ -2,8 +2,8 @@ import { useBackend } from '../backend'; import { Button, LabeledList, Section, ColorBox, NoticeBox, Box } from '../components'; import { Window } from '../layouts'; -export const PrecisionEditor = (props, context) => { - const { act, data } = useBackend(context); +export const PrecisionEditor = (props) => { + const { act, data } = useBackend(); // Extract `health` and `color` variables from the `data` object. const { screenstate } = data; return ( @@ -19,8 +19,8 @@ export const PrecisionEditor = (props, context) => { ); }; -const SeedStatus = (props, context) => { - const { act, data } = useBackend(context); +const SeedStatus = (props) => { + const { act, data } = useBackend(); const { health, plantcolor, fruitcolor, chems, seedname } = data; return ( @@ -71,8 +71,8 @@ const SeedStatus = (props, context) => { ); }; -const ColorEditor = (props, context) => { - const { act, data } = useBackend(context); +const ColorEditor = (props) => { + const { act, data } = useBackend(); const { plantcolor, fruitcolor } = data; return ( @@ -98,8 +98,8 @@ const ColorEditor = (props, context) => { ); }; -const BiochemEditor = (props, context) => { - const { act, data } = useBackend(context); +const BiochemEditor = (props) => { + const { act, data } = useBackend(); const { beakerchems, health } = data; return ( diff --git a/vorestation.dme b/vorestation.dme index fb97ab51444..11f5998c475 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -4419,7 +4419,6 @@ #include "maps\expedition_vr\beach\submaps\mountains.dm" #include "maps\expedition_vr\beach\submaps\mountains_areas.dm" #include "maps\gateway_archive_vr\blackmarketpackers.dm" -#include "maps\groundbase\groundbase.dm" #include "maps\redgate\fantasy_items.dm" #include "maps\southern_cross\items\clothing\sc_accessory.dm" #include "maps\southern_cross\items\clothing\sc_suit.dm"