Skip to content

Commit

Permalink
Partially re-add say notifies
Browse files Browse the repository at this point in the history
  • Loading branch information
alicealys committed Jan 23, 2022
1 parent 171c9ba commit 1fd9349
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/component/notifies.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,9 @@ namespace notifies
{
const auto player = _player.as<scripting::entity>();

scripting::notify(level, "say", {player, message, teamchat});
scripting::notify(level, "say_", {player, message, teamchat});
scripting::notify(player, "say", {message, teamchat});
scripting::notify(player, "say_", {message, teamchat});
}
});

Expand Down

0 comments on commit 1fd9349

Please sign in to comment.