1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-25 14:24:58 +02:00
This commit is contained in:
syuilo
2026-05-21 14:26:27 +09:00
parent 7546e7c800
commit 555fa80709
4 changed files with 8 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ import { speakerStand } from './objects/speakerStand.js';
import { spotLight } from './objects/spotLight.js';
import { sprayer } from './objects/sprayer.js';
import { stanchionPole } from './objects/stanchionPole.js';
import { steelRack60x35 } from './objects/steelRack.js';
import { steelRack60x35, steelRack90x35 } from './objects/steelRack.js';
import { stormGlass } from './objects/stormGlass.js';
import { tableSalt } from './objects/tableSalt.js';
import { tabletopCalendar } from './objects/tabletopCalendar.js';
@@ -194,6 +194,7 @@ export const OBJECT_DEFS = [
speakerStand,
sprayer,
steelRack60x35,
steelRack90x35,
stormGlass,
tableSalt,
tabletopCalendar,

View File

@@ -231,3 +231,9 @@ export const steelRack60x35 = base.extend({
name: 'steelRack60x35',
path: 'steel-rack/60-35',
});
export const steelRack90x35 = base.extend({
id: 'steelRack90x35',
name: 'steelRack90x35',
path: 'steel-rack/90-35',
});