We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3fab21 commit fdca95aCopy full SHA for fdca95a
src/modules/places/dungeons/warden.ts
@@ -1,5 +1,5 @@
1
import { system } from '@minecraft/server'
2
-import { MinecraftBlockTypes } from '@minecraft/vanilla-data'
+import { MinecraftBlockTypes, MinecraftEntityTypes } from '@minecraft/vanilla-data'
3
import {
4
actionGuard,
5
ActionGuardOrder,
@@ -27,7 +27,7 @@ class WardenDungeonRegion extends Region {
27
28
protected defaultPermissions: RegionPermissions = {
29
allowedAllItem: true,
30
- allowedEntities: PVP_ENTITIES,
+ allowedEntities: [...PVP_ENTITIES, MinecraftEntityTypes.Warden],
31
32
doors: true,
33
gates: true,
0 commit comments