Empowering everyone to host fast and efficient Minecraft servers.
This report presents the forensic synthetic code analysis of Pumpkin-MC/Pumpkin, a Rust project with 7,953 GitHub stars. SynthScan v2.0 examined 323,001 lines of code across 1849 source files, recording 551 pattern matches distributed across 9 syntactic categories. The overall adjusted score of 3.2 places this repository in the Likely human-written band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 551 distinct pattern matches across 9 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | pumpkin/src/net/query.rs | 161 | server.advanced_config.networking.java.motd.as_str(), | CODE |
| CRITICAL | pumpkin/src/net/query.rs | 187 | server.advanced_config.networking.java.motd.as_str(), | CODE |
| CRITICAL | pumpkin/src/net/bedrock/unconnected.rs | 33 | motd_line_1: server.advanced_config.networking.bedrock.motd.clone(), | CODE |
| CRITICAL | pumpkin/src/entity/player.rs | 4568 | self.living_entity.entity.entity_type.resource_name.into(), | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 320 | let world = self.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 355 | let pos = self.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 367 | let pos = self.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 397 | let yaw = self.mob_entity.living_entity.entity.yaw.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 532 | let world = self.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 533 | let pos = self.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 554 | let world = self.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 556 | let dragon_bbox = self.mob_entity.living_entity.entity.bounding_box.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 587 | let world = self.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 588 | let pos = self.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 618 | let world = self.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 619 | let bbox = self.mob_entity.living_entity.entity.bounding_box.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 651 | let yaw = self.mob_entity.living_entity.entity.yaw.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 656 | let pos = self.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL⚡ | pumpkin/src/entity/boss/ender_dragon.rs | 725 | let y = self.mob_entity.living_entity.entity.pos.load().y; | CODE |
| CRITICAL⚡ | pumpkin/src/entity/boss/ender_dragon.rs | 726 | let yaw = self.mob_entity.living_entity.entity.yaw.load(); | CODE |
| CRITICAL⚡ | pumpkin/src/entity/boss/ender_dragon.rs | 734 | let world = self.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon.rs | 763 | let pos = self.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/circling.rs | 16 | let pos = dragon.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/circling.rs | 48 | let world = dragon.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | …src/entity/boss/ender_dragon/phase/landing_approach.rs | 20 | let pos = dragon.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/strafing.rs | 31 | let world = dragon.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/strafing.rs | 32 | let pos = dragon.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/strafing.rs | 111 | let yaw = dragon.mob_entity.living_entity.entity.yaw.load(); | CODE |
| CRITICAL | …mpkin/src/entity/boss/ender_dragon/phase/taking_off.rs | 20 | let pos = dragon.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/charging.rs | 20 | let world = dragon.mob_entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/boss/ender_dragon/phase/charging.rs | 21 | let pos = dragon.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | …in/src/entity/boss/ender_dragon/phase/fly_to_portal.rs | 20 | let pos = dragon.mob_entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/ai/goal/blaze_attack.rs | 110 | let blaze_pos = blaze.entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/ai/goal/blaze_attack.rs | 152 | let chunk_pos = blaze.entity.living_entity.entity.chunk_pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/ai/goal/blaze_attack.rs | 163 | blaze.entity.living_entity.entity.block_pos.load(), | CODE |
| CRITICAL | pumpkin/src/entity/ai/goal/blaze_attack.rs | 182 | let world = blaze.entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/ai/goal/blaze_attack.rs | 185 | let mut pos = blaze.entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/mob/shulker.rs | 224 | let pos = self.mob_entity.living_entity.entity.block_pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/mob/slime.rs | 296 | let world = self.entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/mob/slime.rs | 300 | &self.entity.living_entity.entity.pos.load(), | CODE |
| CRITICAL | pumpkin/src/entity/mob/slime.rs | 341 | let world = self.entity.living_entity.entity.world.load(); | CODE |
| CRITICAL | pumpkin/src/entity/mob/slime.rs | 342 | let pos = self.entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/mob/slime.rs | 535 | let my_pos = self.slime.entity.living_entity.entity.pos.load(); | CODE |
| CRITICAL | pumpkin/src/entity/mob/slime.rs | 629 | let vehicle = self.slime.entity.living_entity.entity.vehicle.lock().await; | CODE |
| CRITICAL | …in/src/plugin/loader/wasm/wasm_host/wit/v0_1/server.rs | 327 | Ok(server.advanced_config.networking.java.motd.clone()) | CODE |
| CRITICAL | …in/src/plugin/loader/wasm/wasm_host/wit/v0_1/server.rs | 363 | Ok(server.advanced_config.networking.java.view_distance.get()) | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pumpkin-data/src/block_rotation.rs | 1 | //! Block rotation and mirroring transformations. | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 1 | #![allow(unused_imports)] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 21 | #[rustfmt::skip] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 41 | #[rustfmt::skip] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 81 | COMMENT | |
| LOW | pumpkin-data/src/lib.rs | 101 | #[rustfmt::skip] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 141 | #[cfg(feature = "entity_pose")] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 161 | #[cfg(feature = "dimension")] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 221 | COMMENT | |
| LOW | pumpkin-data/src/lib.rs | 241 | pub mod item_id_remap; | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 261 | pub mod tag; | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 281 | pub mod fuels; | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 321 | #[cfg(feature = "block")] | COMMENT |
| LOW | pumpkin-data/src/lib.rs | 341 | #[cfg(feature = "slot_ranges")] | COMMENT |
| LOW | pumpkin-data/src/blocks.rs | 41 | pub flammable: Option<Flammable>, | COMMENT |
| LOW | pumpkin/src/net/lan_broadcast.rs | 41 | } | COMMENT |
| LOW | pumpkin/src/net/proxy/bungeecord.rs | 21 | /// Attempts to login a player via `BungeeCord`. | COMMENT |
| LOW | pumpkin/src/net/java/mod.rs | 101 | /// A normal-priority queue of serialized packets to send to the network. | COMMENT |
| LOW | pumpkin/src/net/java/mod.rs | 581 | /// | COMMENT |
| LOW | pumpkin/src/entity/living.rs | 1061 | // if let Some(name) = name { | COMMENT |
| LOW | pumpkin/src/entity/living.rs | 1081 | // let is_ladder = down_block | COMMENT |
| LOW | pumpkin/src/entity/living.rs | 1121 | COMMENT | |
| LOW | pumpkin/src/entity/mod.rs | 1961 | Option<&'static BlockState>, | COMMENT |
| LOW | pumpkin/src/entity/mod.rs | 3601 | } | COMMENT |
| LOW | pumpkin/src/entity/player.rs | 1321 | /// Returns `Some(CalculatedRespawnPoint)` if a valid respawn point exists, `None` otherwise. | COMMENT |
| LOW | pumpkin/src/entity/ai/goal/mod.rs | 221 | /// will move in memory and cause undefined behavior! | COMMENT |
| LOW | pumpkin/src/entity/ai/goal/mod.rs | 241 | /// | COMMENT |
| LOW | pumpkin/src/entity/mob/blaze.rs | 61 | COMMENT | |
| LOW | pumpkin/src/plugin/mod.rs | 61 | ) -> BoxFuture<'a, ()>; | COMMENT |
| LOW | pumpkin/src/plugin/api/mod.rs | 21 | /// The authors of the plugin. | COMMENT |
| LOW | pumpkin/src/plugin/api/mod.rs | 41 | /// This method initializes the plugin within the server context. | COMMENT |
| LOW | pumpkin/src/plugin/api/context.rs | 101 | COMMENT | |
| LOW | pumpkin/src/plugin/api/context.rs | 121 | service: Arc<T>, | COMMENT |
| LOW | pumpkin/src/plugin/api/context.rs | 141 | /// | COMMENT |
| LOW | pumpkin/src/plugin/api/context.rs | 261 | /// Asynchronously registers an event handler for a specific event type. | COMMENT |
| LOW | pumpkin/src/plugin/api/context.rs | 301 | /// loader is registered, the plugin manager will automatically attempt to load | COMMENT |
| LOW | pumpkin/src/plugin/api/events/mod.rs | 21 | /// Returns the name of the payload instance. | COMMENT |
| LOW | pumpkin/src/plugin/api/events/mod.rs | 41 | fn as_any_mut(&mut self) -> &mut dyn Any; | COMMENT |
| LOW | pumpkin/src/plugin/api/events/mod.rs | 101 | } | COMMENT |
| LOW | …mpkin/src/plugin/api/events/server/server_broadcast.rs | 1 | use pumpkin_macros::{Event, cancellable}; | COMMENT |
| LOW | pumpkin/src/plugin/api/events/server/server_command.rs | 1 | use pumpkin_macros::{Event, cancellable}; | COMMENT |
| LOW | pumpkin/src/plugin/api/events/block/block_grow.rs | 41 | /// Creates a new `BlockGrowEvent`. | COMMENT |
| LOW | …in/src/plugin/api/events/player/player_change_world.rs | 1 | use pumpkin_macros::{Event, cancellable}; | COMMENT |
| LOW | …in/src/plugin/api/events/player/player_change_world.rs | 21 | /// | COMMENT |
| LOW | …in/src/plugin/api/events/player/player_change_world.rs | 41 | pub yaw: f32, | COMMENT |
| LOW | …/src/plugin/api/events/player/player_interact_event.rs | 21 | /// The type of action the player performed. | COMMENT |
| LOW | …kin/src/plugin/api/events/player/inventory_interact.rs | 41 | /// Creates a new instance of `InventoryClickEvent`. | COMMENT |
| LOW | pumpkin/src/plugin/api/events/player/player_respawn.rs | 1 | use pumpkin_macros::Event; | COMMENT |
| LOW | pumpkin/src/plugin/api/events/player/player_respawn.rs | 41 | COMMENT | |
| LOW | pumpkin/src/world/mod.rs | 181 | /// | COMMENT |
| LOW | pumpkin/src/world/mod.rs | 3761 | /// # Arguments | COMMENT |
| LOW | pumpkin/src/world/mod.rs | 3781 | /// # Arguments | COMMENT |
| LOW | pumpkin/src/world/mod.rs | 4001 | COMMENT | |
| LOW | pumpkin/src/server/mod.rs | 461 | /// 2. Determines the player's gamemode (defaulting to Survival if not specified in configuration). | COMMENT |
| LOW | pumpkin/src/server/mod.rs | 661 | }} | COMMENT |
| LOW | pumpkin/src/server/mod.rs | 701 | COMMENT | |
| LOW | pumpkin/src/server/mod.rs | 781 | /// | COMMENT |
| LOW | pumpkin/src/command/mod.rs | 41 | pub mod tree; | COMMENT |
| LOW | pumpkin/src/command/mod.rs | 61 | #[derive(Clone)] | COMMENT |
| LOW | pumpkin/src/command/mod.rs | 381 | Facing::South => 0.0, | COMMENT |
| 394 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | pumpkin-data/src/item_stack/mod.rs | 911 | // ── damage_item ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-data/src/item_stack/mod.rs | 1024 | // ── repair_item ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-data/src/item_stack/mod.rs | 1142 | // ── stacked item breaking ──────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-data/src/item_stack/mod.rs | 1170 | // ── weapon category predicates ─────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-data/src/item_stack/mod.rs | 1261 | // ── Unbreaking (statistical) ───────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-data/src/item_stack/mod.rs | 1315 | // ── set_damage ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/entity/living.rs | 2807 | // ── bypasses_armor_durability ───────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 26 | // ── Constants (match vanilla exactly) ──────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 41 | // ── Respawn stage ───────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 67 | // ── DragonFight ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 70 | // ── Persistent state (would be saved to disk in vanilla) ────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 89 | // ── Transient counters ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 94 | // ── Boss bar ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 133 | // ── Main tick ───────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 200 | // ── State scanning ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 277 | // ── Dragon lifecycle ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 382 | // ── Crystal destruction ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 397 | // ── Respawn sequence ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 535 | // ── Gateway spawning ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 553 | // ── Crystal spawning ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 593 | // ── Exit portal ─────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 617 | // ── Boss bar ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin/src/world/dragon_fight.rs | 698 | // ── Public queries ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-world/src/world_info/anvil.rs | 154 | // ── Write level.dat ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | pumpkin-world/src/world_info/anvil.rs | 165 | // ── Write data/minecraft/*.dat files ───────────────────────────────── | COMMENT |
| MEDIUM | …kin-world/src/generation/generator/structure_finder.rs | 44 | // ── Pass 1: Concentric-rings (strongholds) ────────────────────────────── | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | pumpkin/src/command/node/tree.rs | 188 | /// Essentially, this means that a [`CommandDetachedNode`] must have the root node | COMMENT |
| MEDIUM | pumpkin/src/command/node/tree.rs | 210 | /// Essentially, this means that a [`CommandAttachedNode`] must have the root node | COMMENT |
| MEDIUM | pumpkin-world/Cargo.toml | 73 | #harness = false | COMMENT |
| MEDIUM | pumpkin-nbt/src/lib.rs | 974 | // TODO: More robust tests | COMMENT |
| MEDIUM | pumpkin-nbt/src/compound.rs | 377 | Self::String(v) => write!(f, "\"{v}\""), // TODO: Proper escaping needed for robust SNBT | CODE |
| MEDIUM | assets/recipes.json | 1 | {"minecraft:acacia_boat":{"group":"boat","key":{"#":"minecraft:acacia_planks"},"pattern":["# #","###"],"result":{"id":"m | CODE |
| MEDIUM⚡ | assets/en_us_java.json | 1 | {"accessibility.onboarding.accessibility.button":"Accessibility Settings...","accessibility.onboarding.accessibility.but | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pumpkin/src/entity/predicate/mod.rs | 33 | // TODO: implement | COMMENT |
| LOW | pumpkin/src/entity/projectile/arrow.rs | 174 | // TODO: implement this | COMMENT |
| LOW | pumpkin/src/entity/ai/goal/ambient_stand.rs | 13 | // TODO: implement when Horses are implemented | COMMENT |
| LOW | pumpkin/src/entity/ai/goal/move_to_target_pos.rs | 117 | // TODO: implement when navigation is implemented | COMMENT |
| LOW⚡ | pumpkin/src/entity/mob/mod.rs | 779 | // TODO: implement | COMMENT |
| LOW⚡ | pumpkin/src/entity/mob/mod.rs | 789 | // TODO: implement | COMMENT |
| LOW⚡ | pumpkin/src/entity/mob/mod.rs | 793 | // TODO: implement | COMMENT |
| LOW | pumpkin-world/src/generation/proto_chunk_test.rs | 1 | #[cfg(test)] // TODO: Fix tests to work with new ProtoChunk API | COMMENT |
| LOW | pumpkin-world/src/generation/noise/mod.rs | 447 | // TODO: Add test to verify the height estimator has no interpolators or cell caches | COMMENT |
| LOW | pumpkin-world/src/generation/blender/blending_data.rs | 60 | // TODO: implement density iteration | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | assets/recipes.json | 1 | {"minecraft:acacia_boat":{"group":"boat","key":{"#":"minecraft:acacia_planks"},"pattern":["# #","###"],"result":{"id":"m | CODE |
| MEDIUM | assets/items.json | 1 | {"air":{"id":0,"components":{"minecraft:swing_animation":{},"minecraft:item_model":"minecraft:air","minecraft:max_stack_ | CODE |
| MEDIUM | assets/advancements.json | 1 | {"minecraft:recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb":{"parent":"minecraft:recipes/root","rewards" | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pumpkin/src/world/mod.rs | 3556 | // NOTE: This function doesn't actually await on anything, it just spawns two tokio tasks | COMMENT |
| LOW | pumpkin-protocol/src/java/packet_encoder.rs | 204 | /// NOTE: This method does not flush. Call [`Self::flush`] to flush buffered data. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | assets/en_us_java.json | 1 | {"accessibility.onboarding.accessibility.button":"Accessibility Settings...","accessibility.onboarding.accessibility.but | CODE |
| LOW⚡ | assets/en_us_java.json | 1 | {"accessibility.onboarding.accessibility.button":"Accessibility Settings...","accessibility.onboarding.accessibility.but | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …kin/src/plugin/loader/wasm/wasm_host/wit/v0_1/forms.rs | 79 | "type": "input", "text": self.translate_res(&text, locale), "placeholder": placeholder, "default": d | CODE |