File tree 3 files changed +7
-2
lines changed
common/src/main/java/dev/ftb/mods/ftbessentials/commands/impl/teleporting
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 2101.1.2]
8
+
9
+ ### Fixed
10
+ * Fixed a command being usable by non-admin players
11
+
7
12
## [ 2101.1.1]
8
13
9
14
### Added
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public List<LiteralArgumentBuilder<CommandSourceStack>> register() {
50
50
)
51
51
);
52
52
53
- var alias = literal ("tpo" ).redirect (tpOffline .build ());
53
+ var alias = literal ("tpo" ).requires ( FTBEConfig . TP_OFFLINE . enabledAndOp ()). redirect (tpOffline .build ());
54
54
55
55
return List .of (tpOffline , alias );
56
56
}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ archives_base_name=ftb-essentials
9
9
maven_group =dev.ftb.mods
10
10
11
11
minecraft_version =1.21.1
12
- mod_version =2101.1.1
12
+ mod_version =2101.1.2
13
13
mod_author =FTB Team
14
14
15
15
# Deps
You can’t perform that action at this time.
0 commit comments