BedrockCC
输入指令后控制台没有反应且其他世界均正常
地皮插件:Plot,多世界插件:MV
配置如下
多世界地皮世界配置:
  1. dp:
  2.     ==: MVWorld
  3.     hidden: 'false'
  4.     alias: '&6&l森林岛屿'
  5.     color: WHITE
  6.     style: NORMAL
  7.     pvp: 'true'
  8.     scale: '1.0'
  9.     respawnWorld: ''
  10.     allowWeather: 'true'
  11.     difficulty: NORMAL
  12.     spawning:
  13.       ==: MVSpawnSettings
  14.       animals:
  15.         ==: MVSpawnSubSettings
  16.         spawn: 'false'
  17.         spawnrate: '-1'
  18.         exceptions: []
  19.       monsters:
  20.         ==: MVSpawnSubSettings
  21.         spawn: 'true'
  22.         spawnrate: '-1'
  23.         exceptions: []
  24.     entryfee:
  25.       ==: MVEntryFee
  26.       amount: '0.0'
  27.     hunger: 'true'
  28.     autoHeal: 'true'
  29.     adjustSpawn: 'false'
  30.     portalForm: ALL
  31.     gameMode: SURVIVAL
  32.     keepSpawnInMemory: 'true'
  33.     spawnLocation:
  34.       ==: MVSpawnLocation
  35.       x: -87.5
  36.       y: 143.5
  37.       z: -77.5
  38.       pitch: 6.3002143
  39.       yaw: 90.14514
  40.     autoLoad: 'true'
  41.     bedRespawn: 'true'
  42.     worldBlacklist: []
  43.     environment: NORMAL
  44.     seed: '-7767171302009820313'
  45.     generator: PlotSquared
  46.     playerLimit: '-1'
  47.     allowFlight: 'true'
复制代码
地皮插件配置:
  1. # This value is not configurable. It shows the platform you are using.
  2. platform: "Bukkit"
  3. # Show additional information in console. It helps us at IntellectualSites to find out more about an issue.
  4. # Leave it off if you don't need it, it can spam your console.
  5. debug: false

  6. # Redstone related settings
  7. redstone:
  8.   # Disable redstone in unoccupied plots
  9.   disable-unoccupied: false
  10.   # Disable redstone when all owners/trusted/members are offline
  11.   disable-offline: false
  12.   # Detect and cancel invalid pistons on the edge of plots (e.g. placed with WorldEdit)
  13.   detect-invalid-edge-pistons: false

  14. # UUID settings
  15. # DO NOT EDIT them unless you know what you are doing.
  16. uuid:
  17.   # Force using offline UUIDs (it usually detects the right mode)
  18.   offline: false
  19.   # Force using lowercase UUIDs
  20.   force-lowercase: false
  21.   # How many UUIDs that may be stored in the cache
  22.   uuid-cache-size: 100000
  23.   # Rate limit (per 10 minutes) for background UUID fetching from the Mojang API
  24.   background-limit: 200
  25.   # Whether the Mojang API service is enabled for impromptu api calls. If false only the Background task will use http requests to fill the UUID cache (requires restart)
  26.   impromptu-service-mojang-api: true
  27.   # Rate limit (per 10 minutes) for random UUID fetching from the Mojang API
  28.   impromptu-limit: 300
  29.   # Timeout (in milliseconds) for non-blocking UUID requests (mostly commands)
  30.   non-blocking-timeout: 3000
  31.   # Timeout (in milliseconds) for blocking UUID requests (events)
  32.   blocking-timeout: 10
  33.   # Whether or not PlotSquared should read from the legacy database
  34.   legacy-database-support: true
  35.   # Whether or not PlotSquared should return Unknown if it fails to fulfill a request
  36.   unknown-as-default: true
  37.   # Whether or not automatic background caching should be enabled. It is HIGHLY recommended to keep this turned on. This should only be disabled if the server has a very large number of plots (>100k)
  38.   background-caching-enabled: true
  39.   # Whether the PaperMC service is enabled
  40.   service-paper: true
  41.   # Whether the LuckPerms service is enabled
  42.   service-luckperms: true
  43.   # Whether the Bukkit service is enabled
  44.   service-bukkit: true
  45.   # Whether the EssentialsX service is enabled
  46.   service-essentialsx: true

  47. # Enable or disable parts of the plugin
  48. # Note: A cache will use some memory if enabled
  49. enabled-components:
  50.   # The database stores all the plots
  51.   database: true
  52.   # Events are needed to track a lot of things
  53.   events: true
  54.   # Commands are used to interact with the plugin
  55.   commands: true
  56.   # Whether we should notify you about updates or not.
  57.   update-notifications: true
  58.   # Stores user metadata in a database
  59.   persistent-meta: true
  60.   # Getting a rating won't need the database
  61.   rating-cache: true
  62.   # Allow WorldEdit to be restricted to plots
  63.   worldedit-restrictions: true
  64.   # Allow economy to be used to sell, claim or buy plots.
  65.   economy: false
  66.   # Expiry will clear old or simplistic plots
  67.   plot-expiry: false
  68.   # Processes chunks (trimming, or entity/tile limits)
  69.   chunk-processor: false
  70.   # Kill mobs on roads (Chicken, Cow, etc.)
  71.   kill-road-mobs: false
  72.   # Also kill any road mobs that are being ridden, or are leashed
  73.   kill-owned-road-mobs: false
  74.   # Kill items on roads (Stick, Paper, etc.)
  75.   kill-road-items: false
  76.   # Kill vehicles on roads (Boat, Minecart, etc.)
  77.   kill-road-vehicles: false
  78.   # Notify a player of any missed plot comments upon plot entry
  79.   comment-notifier: true
  80.   # Let players claim entire worlds with PlotSquared
  81.   worlds: false
  82.   # Actively purge invalid database entries
  83.   database-purger: false
  84.   # Delete plots when a player is banned.
  85.   # Note: This only works with the /minecraft:ban command. Any punishment plugin is not supported.
  86.   ban-deleter: false
  87.   # Allows PlaceholderAPI placeholders to be used in captions, flags, etc.
  88.   external-placeholders: true
  89.   # Make road regeneration persistent across restarts
  90.   persistent-road-regen: true
  91.   # Enable the `/plot component` preset GUI
  92.   # Read more about components here: https://intellectualsites.github.io/plotsquared-documentation/customization/plot-components
  93.   component-presets: true
  94.   # Enable per user locale
  95.   per-user-locale: false
  96.   # The default locale. Before changing the language, make sure you downloaded the appropriate file and put it in the 'lang' folder.
  97.   # You can find additional translations here: https://intellectualsites.crowdin.com/plotsquared
  98.   default-locale: "zh"
  99.   # Use UUID cache to complete usernames
  100.   extended-username-completion: true
  101.   # Command aliases that will be tab completed
  102.   tab-completed-aliases:
  103.   - "plot"
  104.   - "plots"
  105.   - "p"
  106.   - "plotsquared"
  107.   - "plot2"
  108.   - "p2"
  109.   - "ps"
  110.   - "2"
  111.   - "plotme"
  112.   - "plotz"
  113.   - "ap"
  114.   # Whether PlotSquared should hook into MvDWPlaceholderAPI or not
  115.   use-mvdwapi: true
  116.   # Prevent cross plot beacon effects
  117.   disable-beacon-effect-overflow: true

  118. # This is an auto clearing task called `task1`
  119. auto-clear:
  120.   task1:
  121.     threshold: -1
  122.     required-plots: -1
  123.     confirmation: true
  124.     days: 90
  125.     skip-account-age-days: -1
  126.     # True, if a plot should be deleted if the plot owner is unknown to the server
  127.     delete-if-owner-is-unknown: false
  128.     worlds:
  129.     - "*"
  130.     # See: https://intellectualsites.github.io/plotsquared-documentation/optimization/plot-analysis for a description of each value.
  131.     calibration:
  132.       variety: 0
  133.       variety-sd: 0
  134.       changes: 0
  135.       changes-sd: 1
  136.       faces: 0
  137.       faces-sd: 0
  138.       data-sd: 0
  139.       air: 0
  140.       air-sd: 0
  141.       data: 0

  142. # Miscellaneous settings
  143. done:
  144.   # Require a plot marked as done to download (/plot download)
  145.   required-for-download: false
  146.   # Only plots marked as done can be rated
  147.   required-for-ratings: false
  148.   # Restrict building when a plot is marked as done
  149.   restrict-building: false
  150.   # The limit being how many plots a player can claim
  151.   counts-towards-limit: true

  152. # Configure the paths that will be used
  153. paths:
  154.   schematics: "schematics"
  155.   templates: "templates"

  156. # Schematic interface related settings
  157. web:
  158.   # The web interface for schematics
  159.   #  - All schematics are anonymous and private
  160.   #  - Downloads can be deleted by the user
  161.   #  - Supports plot uploads, downloads and saves
  162.   url: "https://schem.intellectualsites.com/plots/"
  163.   # Whether or not the legacy web interface will be used for /plot download and /plot save
  164.   # Note that this will be removed in future versions. Updating to Arkitektonika is highly suggested
  165.   legacy-webinterface: false

  166. # Rating related settings
  167. ratings:
  168.   # Replace the rating system with a like system. Will add /plot like/dislike, and remove the rating command
  169.   use-likes: false
  170.   # Rating categories
  171.   categories: []
  172.   # The blocks to use for the rating GUI if categories are set above
  173.   block-0: "brown_wool"
  174.   block-1: "red_wool"
  175.   block-2: "orange_wool"
  176.   block-3: "yellow_wool"
  177.   block-4: "lime_wool"
  178.   block-5: "cyan_wool"
  179.   block-6: "blue_wool"
  180.   block-7: "purple_wool"
  181.   block-8: "magenta_wool"

  182. # Teleportation related settings
  183. teleport:
  184.   # Teleport to your plot on death
  185.   on-death: false
  186.   # Teleport to your plot on login
  187.   on-login: false
  188.   # Teleport to your plot on claim (/plot claim)
  189.   on-claim: true
  190.   # Teleport to your plot on auto (/plot auto)
  191.   on-auto: true
  192.   # Add a delay to all teleport commands (in seconds)
  193.   # Assign `plots.teleport.delay.bypass` to bypass the cooldown
  194.   delay: 0
  195.   # Teleport outside of the plot before clearing
  196.   on-clear: false
  197.   # Teleport outside of the plot before deleting
  198.   on-delete: false
  199.   # The visit command is ordered by world instead of globally
  200.   per-world-visit: false
  201.   # Search merged plots for having multiple owners when using the visit command
  202.   visit-merged-owners: true

  203. # Chunk processor related settings
  204. # See https://intellectualsites.github.io/plotsquared-documentation/optimization/chunk-processor for more information.
  205. chunk-processor:
  206.   # Auto trim will not save chunks which aren't claimed
  207.   auto-trim: false
  208.   # Max tile entities per chunk
  209.   max-tiles: 4096
  210.   # Max entities per chunk
  211.   max-entities: 512
  212.   # Disable block physics
  213.   disable-physics: false

  214. # Claim related settings
  215. claim:
  216.   # The max plots claimed in a single `/plot auto <size>` command
  217.   max-auto-area: 4

  218. # Relating to how many plots someone can claim
  219. limit:
  220.   # Should the limit be global (over multiple worlds)
  221.   global: false
  222.   # The max range of permissions to check for, e.g. plots.plot.127
  223.   # The value covers the permission range to check, you need to assign the permission to players/groups still
  224.   # Modifying the value does NOT change the amount of plots players can claim
  225.   max-plots: 127

  226. # Settings related to plot titles
  227. titles:
  228.   # The big text that appears when you enter a plot.
  229.   # For a single plot set `/plot flag set titles false` to disable it.
  230.   # For just you run `/plot toggle titles` to disable it.
  231.   # For all plots: Add `titles: false` in the worlds.yml flags block to disable it.
  232.   display-titles: true
  233.   # Plot titles fading in (duration in ticks)
  234.   titles-fade-in: 10
  235.   # Plot titles being shown (duration in ticks)
  236.   titles-stay: 50
  237.   # Plot titles fading out (duration in ticks)
  238.   titles-fade-out: 20
  239.   # Changes the notification method on plot entry from Title + SubTitle -> ActionBar.
  240.   # The message still sent to the player is pulled from the lang key "titles.title_entered_plot".
  241.   # If you would like to still show the owner of the plot, append the contents of "titles.title_entered_plot_sub" onto the former lang key.
  242.   titles-as-actionbar: false
  243.   # If the default title should be displayed on plots with server-plot flag set.
  244.   # Titles will still be sent if the plot-title flag is set.
  245.   display-default-on-server-plot: false

  246. # Settings related to tab completion
  247. tab-completions:
  248.   # The time in seconds how long tab completions should remain in cache.
  249.   # 0 will disable caching. Lower values may be less performant.
  250.   cache-expiration: 15

  251. # Settings relating to PlotSquared's GlobalBlockQueue
  252. queue:
  253.   # Average time per tick spent completing chunk tasks in ms.
  254.   # Queue will adjust the batch size to match this.
  255.   max-iteration-time: 30
  256.   # Initial number of chunks to process by the queue. This can be increased or
  257.   # decreased by the queue based on the actual iteration time compared to above.
  258.   initial-batch-size: 5
  259.   # Notify progress of the queue to the player or console.
  260.   notify-progress: true
  261.   # Interval in ms to notify player or console of progress.
  262.   notify-interval: 5000
  263.   # Time to wait in ms before beginning to notify player or console of progress.
  264.   # Prevent needless notification of progress for short queues.
  265.   notify-wait: 5000
  266.   # How lighting should be handled by the queue. Modes:
  267.   #   - 0 - Do not do any lighting (fastest)
  268.   #   - 1 - Only execute lighting where blocks with light values are placed
  269.   #   - 2 - Only execute lighting where blocks with light values are placed or removed/replaced
  270.   #   - 3 - Always execute lighting (slowest)
  271.   lighting-mode: 1
  272.   # If blocks at the edges of queued operations should be set causing updates
  273.   #  - Slightly slower, but prevents issues such as fences left connected to nothing
  274.   update-edges: true

  275. # Enable or disable parts of the plugin specific to using Paper
  276. paper-components:
  277.   # Enable Paper's listeners.
  278.   paper-listeners: true
  279.   # Prevent entities from leaving plots
  280.   entity-pathing: true
  281.   # Cancel entity spawns when the chunk is loaded if the PlotArea's mob spawning is off
  282.   cancel-chunk-spawn: true
  283.   # Use paper's PlayerLaunchProjectileEvent to cancel projectiles
  284.   player-projectile: true
  285.   # Cancel entity spawns from spawners before they happen (performance buff)
  286.   spawner-spawn: true
  287.   # Cancel entity spawns from tick spawn rates before they happen (performance buff)
  288.   creature-spawn: true
  289.   # Check the tile entity limit on block placement
  290.   tile-entity-check: true
  291.   # Use Paper's async tab completion
  292.   async-tab-completion: false

  293. # Enable or disable all of or parts of the FastAsyncWorldEdit-PlotSquared hook
  294. fawe-components:
  295.   # Use FastAsyncWorldEdit for queue handling.
  296.   fawe-hook: true
  297.   cuboids: true
  298.   clear: true
  299.   copy-and-swap: true
  300.   set-biome: true

  301. # Confirmation timeout related settings
  302. confirmation:
  303.   # Timeout before a confirmation prompt expires
  304.   confirmation-timeout-seconds: 20

  305. # Backup related settings
  306. # See https://intellectualsites.github.io/plotsquared-documentation/plot-backups for more information.
  307. backup:
  308.   # Automatically backup plots when destructive commands are performed, e.g. /plot clear
  309.   automatic-backups: true
  310.   # Maximum amount of backups associated with a plot
  311.   backup-limit: 3
  312.   # Whether or not backups should be deleted when the plot is unclaimed
  313.   delete-on-unclaim: true

  314. # Chat related settings
  315. chat:
  316.   # Should the plot chat be logged to console?
  317.   log-plotchat-to-console: true
  318.   # Whether an action bar message should be send over a chat message for notification purposes such for the
  319.   # notify-enter, notify-leave, greeting or farewell flag.
  320.   notification-as-actionbar: false
  321.   # The click event actions that should be removed from user input in e.g. plot flags like 'greeting'.
  322.   # Actions like 'RUN_COMMAND' may be used maliciously as players could trick staff into clicking on messages
  323.   # triggering destructive commands.
  324.   click-event-actions-to-remove:
  325.   - "OPEN_URL"
  326.   - "OPEN_FILE"
  327.   - "RUN_COMMAND"
  328.   - "SUGGEST_COMMAND"
  329.   - "CHANGE_PAGE"
  330.   - "COPY_TO_CLIPBOARD"

  331. # Used to format the plot creation date placeholder. Modifying the format does not affect the storage time.
  332. timeformat:
  333.   # The date used formatted in ISO 8601
  334.   date-format: "yyyy-MM-dd HH:mm:ss z"
  335.   # The time zone used
  336.   time-zone: "GMT"

  337. # Schematic web interface related settings
  338. arkitektonika:
  339.   # The url of the backend server (Arkitektonika)
  340.   backend-url: "https://api.schematic.cloud/"
  341.   # The url used to generate a download link from.
  342.   # {key} will be replaced with the generated key
  343.   download-url: "https://api.schematic.cloud/download/{key}"
  344.   # The url used to generate a deletion link from.
  345.   # {key} will be replaced with the generated key
  346.   delete-url: "https://api.schematic.cloud/delete/{key}"

  347. # Schematic Settings
  348. # See https://intellectualsites.github.io/plotsquared-documentation/schematics/schematic-on-claim for more information.
  349. schematics:
  350.   # Whether schematic based generation should paste schematic on top of plots, or from Y=1
  351.   paste-on-top: true
  352.   # Whether schematic based road generation should paste schematic on top of roads, or from Y=1
  353.   paste-road-on-top: true
  354.   # If schematics that do not match a plot's size should be pasted anyway
  355.   #  - This will still only paste a schematic with a plot's bounds.
  356.   #  - If a schematic is too big, it will cut off, and if too small, will not full the plot.
  357.   paste-mismatches: true
  358.   # If the wall height should be taken into account when calculating the road schematic paste height
  359.   #  - If true, will use the lower of wall and road height.
  360.   #  - If true, will ensure correct schematic behaviour (no parts are cut off).
  361.   #  - Set to false if you experience the road being set one block too low
  362.   #    (only for road schematics created pre 6.1.4).
  363.   use-wall-in-road-schem-height: true

  364. # Update checker settings
  365. updatechecker:
  366.   # How often to poll for updates (in minutes)
  367.   poll-rate: 360
  368.   # Only notify console once after an update is found
  369.   notify-once: true

  370. # General settings
  371. general:
  372.   # Display scientific numbers (4.2E8)
  373.   scientific: false
  374.   # Replace wall when merging
  375.   merge-replace-wall: true
  376.   # Always show explosion Particles, even if explosion flag is set to false
  377.   always-show-explosions: false
  378.   # Blocks that may not be used in plot components
  379.   # Checkout the wiki article regarding plot components before modifying: https://intellectualsites.github.io/plotsquared-documentation/customization/plot-components
  380.   invalid-blocks:
  381.   - "acacia_button"
  382.   - "acacia_fence_gate"
  383.   - "acacia_door"
  384.   - "acacia_pressure_plate"
  385.   - "acacia_trapdoor"
  386.   - "acacia_sapling"
  387.   - "acacia_sign"
  388.   - "acacia_wall_sign"
  389.   - "acacia_leaves"
  390.   - "birch_button"
  391.   - "birch_fence_gate"
  392.   - "birch_door"
  393.   - "birch_pressure_plate"
  394.   - "birch_trapdoor"
  395.   - "birch_sapling"
  396.   - "birch_sign"
  397.   - "birch_wall_sign"
  398.   - "birch_leaves"
  399.   - "dark_oak_button"
  400.   - "dark_oak_fence_gate"
  401.   - "dark_oak_door"
  402.   - "dark_oak_pressure_plate"
  403.   - "dark_oak_trapdoor"
  404.   - "dark_oak_sapling"
  405.   - "dark_oak_sign"
  406.   - "dark_oak_wall_sign"
  407.   - "dark_oak_leaves"
  408.   - "jungle_button"
  409.   - "jungle_fence_gate"
  410.   - "jungle_door"
  411.   - "jungle_pressure_plate"
  412.   - "jungle_trapdoor"
  413.   - "jungle_sapling"
  414.   - "jungle_sign"
  415.   - "jungle_wall_sign"
  416.   - "jungle_leaves"
  417.   - "oak_button"
  418.   - "oak_fence_gate"
  419.   - "oak_door"
  420.   - "oak_pressure_plate"
  421.   - "oak_trapdoor"
  422.   - "oak_sapling"
  423.   - "oak_sign"
  424.   - "oak_wall_sign"
  425.   - "oak_leaves"
  426.   - "spruce_button"
  427.   - "spruce_fence_gate"
  428.   - "spruce_door"
  429.   - "spruce_pressure_plate"
  430.   - "spruce_trapdoor"
  431.   - "spruce_sapling"
  432.   - "spruce_sign"
  433.   - "spruce_wall_sign"
  434.   - "spruce_leaves"
  435.   - "activator_rail"
  436.   - "detector_rail"
  437.   - "rail"
  438.   - "allium"
  439.   - "azure_bluet"
  440.   - "blue_orchid"
  441.   - "dandelion"
  442.   - "lilac"
  443.   - "orange_tulip"
  444.   - "oxeye_daisy"
  445.   - "peony"
  446.   - "pink_tulip"
  447.   - "poppy"
  448.   - "potted_allium"
  449.   - "potted_azure_bluet"
  450.   - "potted_birch_sapling"
  451.   - "potted_blue_orchid"
  452.   - "potted_brown_mushroom"
  453.   - "potted_cactus"
  454.   - "potted_fern"
  455.   - "potted_jungle_sapling"
  456.   - "potted_oak_sapling"
  457.   - "potted_orange_tulip"
  458.   - "potted_oxeye_daisy"
  459.   - "potted_pink_tulip"
  460.   - "potted_red_mushroom"
  461.   - "potted_red_tulip"
  462.   - "red_mushroom"
  463.   - "red_tulip"
  464.   - "potted_spruce_sapling"
  465.   - "potted_white_tulip"
  466.   - "rose_bush"
  467.   - "sunflower"
  468.   - "white_tulip"
  469.   - "cornflower"
  470.   - "wither_rose"
  471.   - "attached_melon_stem"
  472.   - "attached_pumpkin_stem"
  473.   - "melon_stem"
  474.   - "pumpkin_stem"
  475.   - "mushroom_stem"
  476.   - "beetroots"
  477.   - "brown_mushroom"
  478.   - "cactus"
  479.   - "carrots"
  480.   - "chorus_flower"
  481.   - "chorus_plant"
  482.   - "cocoa"
  483.   - "dead_bush"
  484.   - "fern"
  485.   - "kelp_plant"
  486.   - "large_fern"
  487.   - "lily_pad"
  488.   - "potatoes"
  489.   - "sea_pickle"
  490.   - "seagrass"
  491.   - "sugar_cane"
  492.   - "tall_grass"
  493.   - "tall_seagrass"
  494.   - "vine"
  495.   - "wheat"
  496.   - "bamboo"
  497.   - "anvil"
  498.   - "barrier"
  499.   - "beacon"
  500.   - "brewing_stand"
  501.   - "bubble_column"
  502.   - "cake"
  503.   - "cobweb"
  504.   - "comparator"
  505.   - "creeper_head"
  506.   - "creeper_wall_header"
  507.   - "damaged_anvil"
  508.   - "daylight_detector"
  509.   - "dragon_egg"
  510.   - "dragon_head"
  511.   - "dragon_wall_head"
  512.   - "enchanting_table"
  513.   - "end_gateway"
  514.   - "end_portal"
  515.   - "end_rod"
  516.   - "ender_chest"
  517.   - "chest"
  518.   - "flower_pot"
  519.   - "grass"
  520.   - "heavy_weighted_pressure_plate"
  521.   - "lever"
  522.   - "light_weighted_pressure_plate"
  523.   - "player_head"
  524.   - "redstone_wire"
  525.   - "repeater"
  526.   - "comparator"
  527.   - "redstone_torch"
  528.   - "torch"
  529.   - "redstone_wall_torch"
  530.   - "wall_torch"
  531.   - "sign"
  532.   - "skeleton_skull"
  533.   - "skeleton_wall_skull"
  534.   - "snow"
  535.   - "stone_pressure_plate"
  536.   - "trapped_chest"
  537.   - "tripwire"
  538.   - "tripwire_hook"
  539.   - "turtle_egg"
  540.   - "wall_sign"
  541.   - "zombie_head"
  542.   - "zombie_wall_head"
  543.   - "bell"
  544.   - "black_bed"
  545.   - "black_banner"
  546.   - "black_carpet"
  547.   - "black_concrete_powder"
  548.   - "black_wall_banner"
  549.   - "blue_bed"
  550.   - "blue_banner"
  551.   - "blue_carpet"
  552.   - "blue_concrete_powder"
  553.   - "blue_wall_banner"
  554.   - "brown_bed"
  555.   - "brown_banner"
  556.   - "brown_carpet"
  557.   - "brown_concrete_powder"
  558.   - "brown_wall_banner"
  559.   - "cyan_bed"
  560.   - "cyan_banner"
  561.   - "cyan_concrete_powder"
  562.   - "cyan_carpet"
  563.   - "cyan_wall_banner"
  564.   - "gray_bed"
  565.   - "gray_banner"
  566.   - "gray_concrete_powder"
  567.   - "gray_carpet"
  568.   - "gray_wall_banner"
  569.   - "green_bed"
  570.   - "green_banner"
  571.   - "green_concrete_powder"
  572.   - "green_carpet"
  573.   - "green_wall_banner"
  574.   - "light_blue_bed"
  575.   - "light_blue_banner"
  576.   - "light_blue_concrete_powder"
  577.   - "light_blue_carpet"
  578.   - "light_blue_wall_banner"
  579.   - "light_gray_bed"
  580.   - "light_gray_banner"
  581.   - "light_gray_concrete_powder"
  582.   - "light_gray_carpet"
  583.   - "light_gray_wall_banner"
  584.   - "lime_bed"
  585.   - "lime_banner"
  586.   - "lime_concrete_powder"
  587.   - "lime_carpet"
  588.   - "lime_wall_banner"
  589.   - "magenta_bed"
  590.   - "magenta_banner"
  591.   - "magenta_concrete_powder"
  592.   - "magenta_carpet"
  593.   - "magenta_wall_banner"
  594.   - "orange_bed"
  595.   - "orange_banner"
  596.   - "orange_concrete_powder"
  597.   - "orange_carpet"
  598.   - "orange_wall_banner"
  599.   - "pink_bed"
  600.   - "pink_banner"
  601.   - "pink_concrete_powder"
  602.   - "pink_carpet"
  603.   - "pink_wall_banner"
  604.   - "purple_bed"
  605.   - "purple_banner"
  606.   - "purple_concrete_powder"
  607.   - "purple_carpet"
  608.   - "purple_wall_banner"
  609.   - "red_bed"
  610.   - "red_banner"
  611.   - "red_concrete_powder"
  612.   - "red_carpet"
  613.   - "red_wall_banner"
  614.   - "white_bed"
  615.   - "white_banner"
  616.   - "white_concrete_powder"
  617.   - "white_carpet"
  618.   - "white_wall_banner"
  619.   - "yellow_bed"
  620.   - "yellow_banner"
  621.   - "yellow_concrete_powder"
  622.   - "yellow_carpet"
  623.   - "yellow_wall_banner"
  624.   - "brain_coral"
  625.   - "brain_coral_fan"
  626.   - "brain_coral_wall_fan"
  627.   - "bubble_coral"
  628.   - "bubble_coral_block"
  629.   - "bubble_coral_fan"
  630.   - "bubble_coral_wall_fan"
  631.   - "dead_brain_coral"
  632.   - "dead_brain_coral_block"
  633.   - "dead_brain_coral_fan"
  634.   - "dead_brain_coral_wall_fan"
  635.   - "dead_bubble_coral"
  636.   - "dead_bubble_coral_fan"
  637.   - "dead_bubble_coral_wall_fan"
  638.   - "dead_fire_coral"
  639.   - "dead_fire_coral_block"
  640.   - "dead_fire_coral_fan"
  641.   - "dead_fire_coral_wall_fan"
  642.   - "dead_horn_coral"
  643.   - "dead_horn_coral_block"
  644.   - "dead_horn_coral_fan"
  645.   - "dead_tube_coral"
  646.   - "dead_tube_coral_wall_fan"
  647.   - "dried_kelp_block"
  648.   - "horn_coral"
  649.   - "horn_coral_block"
  650.   - "horn_coral_fan"
  651.   - "horn_coral_wall_fan"
  652.   - "tube_coral"
  653.   - "tube_coral_block"
  654.   - "tube_coral_fan"
  655.   - "tube_coral_wall_fan"
复制代码



奥力給
这种概率有点小
尝试一下只安装这两个插件?
(有可能是某个插件拦截了或者指令拦截了吧)

BedrockCC
奥力給 发表于 2022-12-4 00:59
这种概率有点小
尝试一下只安装这两个插件?
(有可能是某个插件拦截了或者指令拦截了吧) ...

好的我试一下