Skip to content

Commit

Permalink
return seperator in Analyser, more precise solution, add correct log
Browse files Browse the repository at this point in the history
  • Loading branch information
female-nectar committed Dec 5, 2024
1 parent dd2ab5e commit 8da0f22
Show file tree
Hide file tree
Showing 7 changed files with 7,172 additions and 126 deletions.
2 changes: 1 addition & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,5 @@
"auth-server-problem": "The Mojang/Microsoft authentication servers are currently unreachable!",
"auth-server-solution": "Wait a few minutes and try again. If the issue persists, check the official Mojang/Microsoft channels for any known authentication server problems.",
"overworld-settings-missing-problem": "Overworld settings missing",
"missing-datapack-mod-problem": "The mod '{{mod-name}}' is missing it's datapack."
"missing-datapack-mod-problem": "Datapack is missing, because the mod '{{mod-name}}' may not be installed."
}
1 change: 1 addition & 0 deletions src/Analyser/ForgeAnalyser.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public function __construct()
$this->addPossibleInsightClass(ForgeVersionInformation::class);
$this->overridePossibleInsightClass(VanillaVersionInformation::class, ForgeVanillaVersionInformation::class);
$this->addPossibleInsightClass(ForgeJavaVersionInformation::class);

$this->addPossibleInsightClass(FmlConfirmProblem::class);
$this->addPossibleInsightClass(WorldMissingModProblem::class);
$this->addPossibleInsightClass(WorldModVersionProblem::class);
Expand Down
1 change: 1 addition & 0 deletions src/Analyser/VanillaAnalyser.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class VanillaAnalyser extends MinecraftAnalyser
public function __construct()
{
$this->addPossibleInsightClass(VanillaVersionInformation::class);

$this->addPossibleInsightClass(OldPlayerDirectoryProblem::class);
$this->addPossibleInsightClass(AquaticWorldOnOlderVersionProblem::class);
$this->addPossibleInsightClass(TickingBlockEntityProblem::class);
Expand Down
Loading

0 comments on commit 8da0f22

Please sign in to comment.