Skip to content

Commit

Permalink
Merge pull request #75 from FTBTeam/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
desht authored Dec 29, 2024
2 parents d7d6ff8 + 2201933 commit 2f1ab66
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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).

## [2101.1.2]

### Fixed
* Fixed a command being usable by non-admin players

## [2101.1.1]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public List<LiteralArgumentBuilder<CommandSourceStack>> register() {
)
);

var alias = literal("tpo").redirect(tpOffline.build());
var alias = literal("tpo").requires(FTBEConfig.TP_OFFLINE.enabledAndOp()).redirect(tpOffline.build());

return List.of(tpOffline, alias);
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ archives_base_name=ftb-essentials
maven_group=dev.ftb.mods

minecraft_version=1.21.1
mod_version=2101.1.1
mod_version=2101.1.2
mod_author=FTB Team

# Deps
Expand Down

0 comments on commit 2f1ab66

Please sign in to comment.