Disable console logging in despawn status handler

This commit is contained in:
Jerald-Golden-B 2025-05-07 18:49:50 +05:30
parent 871a5413fe
commit de8b1855ee
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ export function useDespawnHandler() {
const { addMaterial, getMaterialById, removeMaterial } = useMaterialStore(); const { addMaterial, getMaterialById, removeMaterial } = useMaterialStore();
const deSpawnLogStatus = (materialUuid: string, status: string) => { const deSpawnLogStatus = (materialUuid: string, status: string) => {
console.log(`${materialUuid}, ${status}`); // console.log(`${materialUuid}, ${status}`);
} }
const handleDespawn = useCallback((action: ConveyorAction, materialId?: string) => { const handleDespawn = useCallback((action: ConveyorAction, materialId?: string) => {