Skip to content

Commit

Permalink
Merge pull request #699 from FTBTeam/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
desht authored Oct 4, 2023
2 parents cbe0131 + c15b705 commit 563e1f8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2001.1.6]

### Fixed
* Fixed client crash when using Task Screens with energy tasks
* The output of `/ftbquests reset_progress` is now just sent to the command issuer, not all online admins

## [2001.1.5]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ private static int changeProgress(CommandSourceStack source, Collection<ServerPl
questObject.forceProgress(ServerQuestFile.INSTANCE.getOrCreateTeamData(player), progressChange);
}

source.sendSuccess(() -> Component.translatable("commands.ftbquests.change_progress.text"), true);
source.sendSuccess(() -> Component.translatable("commands.ftbquests.change_progress.text"), false);
return Command.SINGLE_SUCCESS;
}

Expand Down
1 change: 1 addition & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ if (ENV.CURSEFORGE_KEY) {
requiredDependency 'ftb-library-fabric'
requiredDependency 'ftb-teams-fabric'
requiredDependency 'item-filters'
optionalDependency 'ftb-xmod-compat'
}
changelog = ENV.CHANGELOG // expected to exist if ENV.CURSEFORGE_KEY does
changelogType = 'markdown'
Expand Down
1 change: 1 addition & 0 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ if (ENV.CURSEFORGE_KEY) {
requiredDependency 'ftb-library-forge'
requiredDependency 'ftb-teams-forge'
requiredDependency 'item-filters'
optionalDependency 'ftb-xmod-compat'
}
changelog = ENV.CHANGELOG // expected to exist if ENV.CURSEFORGE_KEY does
changelogType = 'markdown'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
import dev.ftb.mods.ftbquests.client.FTBQuestsClientEventHandler;
import net.minecraftforge.client.event.TextureStitchEvent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.event.IModBusEvent;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

public class ClientSetup {
public static void init() {
MinecraftForge.EVENT_BUS.addListener(ClientSetup::onTextureStitch);
FMLJavaModLoadingContext.get().getModEventBus().addListener(ClientSetup::onTextureStitch);
}

private static void onTextureStitch(TextureStitchEvent.Post event) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod_id=ftbquests
archives_base_name=ftb-quests
minecraft_version=1.20.1
# Build time
mod_version=2001.1.5
mod_version=2001.1.6
maven_group=dev.ftb.mods
mod_author=FTB Team
# Curse release
Expand Down

0 comments on commit 563e1f8

Please sign in to comment.