Trial Spawners are unable to spawn mobs if the minecraft:spawn_mobs game rule is set to “false”.
This is inconsistent with Monster Spawners, which are instead controlled by the minecraft:spawner_blocks_workgame rule.
The problem can be found in net.minecraft.world.level.block.entity.trialspawner.TrialSpawner#canSpawnInLevel:
public boolean canSpawnInLevel(ServerLevel serverLevel) {
if (this.overridePeacefulAndMobSpawnRule) {
return true;
}
if (serverLevel.getDifficulty() == Difficulty.PEACEFUL) {
return false;
}
return serverLevel.getGameRules().getBoolean(GameRules.RULE_DOMOBSPAWNING);
}
Thank you for your report!
We're tracking this issue in MC-266487, so this ticket is being resolved and linked as a duplicate.
If you would like to add a vote and any extra information to the main ticket it would be appreciated.
If you haven't already, you might like to make use of the search feature to see if the issue has already been mentioned.
Quick Links:
📓 Bug Tracker Guidelines – 💬 Community Support – 📧 Mojang Support (Technical Issues) – 📧 Microsoft Support (Account Issues)
📓 Project Summary – ✍️ Feedback and Suggestions – 📖 Game Wiki