diff --git a/src/components/wired-tools/WiredCreatorToolsView.tsx b/src/components/wired-tools/WiredCreatorToolsView.tsx index 2bd5cf8..e486d28 100644 --- a/src/components/wired-tools/WiredCreatorToolsView.tsx +++ b/src/components/wired-tools/WiredCreatorToolsView.tsx @@ -1181,7 +1181,7 @@ export const WiredCreatorToolsView: FC<{}> = () => { key: '@position_x', value: String(liveState?.positionX ?? 0), editable: canEditInspection }, { key: '@position_y', value: String(liveState?.positionY ?? 0), editable: canEditInspection }, { key: '@rotation', value: String(liveState?.rotation ?? 0), editable: canEditInspection }, - { key: '@altitude', value: String(Math.round((liveState?.altitude ?? 0) * 100)), editable: canEditInspection }, + { key: '@altitude', value: String(liveState?.altitude ?? 0), editable: canEditInspection }, { key: '@is_invisible', value: '0' }, ...(wallItemOffset ? [ { key: '@wallitem_offset', value: wallItemOffset, editable: canEditInspection } ] : []), { key: '@type', value: `${ selectedFurnitureData?.availableForBuildersClub ? 1 : 0 }${ selectedFurnitureData?.availableForBuildersClub ? ' (BC)' : ' (Normal)' }` }, @@ -1294,7 +1294,7 @@ export const WiredCreatorToolsView: FC<{}> = () => { key: '@position_x', value: String(liveState?.positionX ?? 0), editable: canEditSelectedUser }, { key: '@position_y', value: String(liveState?.positionY ?? 0), editable: canEditSelectedUser }, { key: '@direction', value: String(liveState?.direction ?? 0), editable: canEditSelectedUser }, - { key: '@altitude', value: String(Math.round((liveState?.altitude ?? 0) * 100)) }, + { key: '@altitude', value: String(liveState?.altitude ?? 0) }, ...((Number(selectedUser.favouriteGroupId ?? 0) > 0) ? [ { key: '@favourite_group_id', value: String(selectedUser.favouriteGroupId) } ] : []),