Skip to content
MrSilly07 edited this page Mar 14, 2026 · 1 revision

FAQ

Answers to common questions from players and pack developers.


Q: Research isn't showing up in the Research Station list.

A: Run /reload. If it still doesn't appear, check the server log for [ResearchCube] WARN messages they describe JSON parse errors in your research files and name the affected file. Common causes: missing comma, wrong tier name (tier names are case-sensitive: use BASIC not basic), or a missing required field (tier and duration are required).


Q: I can see the research but clicking Start does nothing.

A: All five requirements must be met simultaneously:

  1. Drive (slot 0) the Drive's tier must equal the research tier exactly
  2. Cube (slot 1) the Cube's tier must be the research tier
  3. Cost slots (slots 2–7) all item costs filled with the correct items and counts
  4. Fluid tank the correct fluid type is loaded and the amount is at or above the fluid_cost amount
  5. Prerequisites all required prior research has been completed

Q: Research completed but the Drive shows no new recipe.

A: The Drive is probably full. Each Drive tier has a maxRecipes limit (BASIC = 4, ADVANCED = 8, etc.). Use a Drive of the same tier that still has capacity. Check Research Tiers for the capacity table. SELF_AWARE Drives have no limit.


Q: Can I change how long research takes?

A: Yes. Set researchDurationMultiplier in config/researchcube-common.toml. 0.5 makes all research twice as fast; 2.0 makes it twice as slow. Changes require a server restart (or world reload in singleplayer) to take effect.


Q: Does the mod work without JEI or EMI?

A: Yes. Both are fully optional. The Research Station UI, Drive Crafting Table, and all core mechanics function without any recipe viewer. Without JEI/EMI, Drive tooltips and the Research Chip Drive Inspector show recipe IDs as plain strings rather than resolved item names.


Q: What are IRRECOVERABLE drives for?

A: They are decorative and lore items. maxRecipes = 0 and isFunctional() = false IRRECOVERABLE drives cannot be placed in the Research Station or used in the Drive Crafting Table. They cannot be imprinted with recipes.


Q: Can two players share research progress?

A: If enableTeamSharing = true (the default) and both players are on the same FriendlyTeam set with the vanilla /team command their completed research is pooled server-side. One player completing research counts as completed for all team members.


Q: My datapack research runs but no recipe is imprinted. Why?

A: There are two possible causes:

  1. The Drive in slot 0 is full (its maxRecipes limit is reached). Use a Drive with remaining capacity.
  2. The recipe_pool field is absent or empty in your research JSON. If recipe_pool is omitted, no recipe is imprinted on completion this is valid behavior for research that is purely a prerequisite gate.

Q: How do I browse what recipes a Drive can produce before I run the research?

A: Open JEI or EMI and look up the Drive Crafting category. All registered researchcube:drive_crafting recipes are listed there with their required Drive, ingredients, and output. Alternatively, read the Research Book (right-click the research_book item) to see each research's recipe_pool.


Q: How do I report a bug or request a feature?

A: Open an issue on the mod's GitHub repository. Include your mod version, NeoForge version, a description of the problem, and any relevant log output.


Related Pages

Clone this wiki locally