Disable console logging in despawn status handler
This commit is contained in:
parent
871a5413fe
commit
de8b1855ee
|
@ -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) => {
|
||||||
|
|
Loading…
Reference in New Issue