Skip to content

Commit 68eb373

Browse files
committed
chore: fix
1 parent 0a8a2e4 commit 68eb373

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/modules/places/mineshaft/mineshaft.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { system } from '@minecraft/server'
2-
import { MineshaftRegion, actionGuard, isNotPlaying, util } from 'lib'
2+
import { actionGuard, isNotPlaying, util } from 'lib'
33
import { scheduleBlockPlace } from 'modules/survival/scheduled-block-place'
44
import { ores, placeOre } from './algo'
5+
import { MineshaftRegion } from './mineshaft-region'
56

67
actionGuard((player, region, ctx) => {
78
if (isNotPlaying(player)) return

src/modules/survival/sidebar.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import { Player, system, world } from '@minecraft/server'
2-
import { BaseRegion, Menu, MineshaftRegion, Region, SafeAreaRegion, Settings, Sidebar, util } from 'lib'
2+
import { Menu, Region, Settings, Sidebar, util } from 'lib'
33
import { emoji } from 'lib/assets/emoji'
44
import { Quest } from 'lib/quest/quest'
55
import { Minigame } from 'modules/minigames/Builder'
6+
import { BaseRegion } from 'modules/places/base/region'
7+
import { MineshaftRegion } from 'modules/places/mineshaft/mineshaft-region'
68

79
const getSidebarSettings = Settings.player(...Menu.settings, {
810
enabled: {

0 commit comments

Comments
 (0)