aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src')
-rw-r--r--azalea-core/src/game_type.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-core/src/game_type.rs b/azalea-core/src/game_type.rs
index a8c73a41..9113e382 100644
--- a/azalea-core/src/game_type.rs
+++ b/azalea-core/src/game_type.rs
@@ -87,7 +87,7 @@ impl GameMode {
impl GameMode {
/// Whether the player can't interact with blocks while in this game mode.
///
- /// (Returns true if you're in adventure or spectator.)
+ /// Returns true if you're in adventure or spectator.
pub fn is_block_placing_restricted(&self) -> bool {
matches!(self, GameMode::Adventure | GameMode::Spectator)
}