diff options
author | JMM889901 <41163714+JMM889901@users.noreply.github.com> | 2023-10-03 23:37:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-04 00:37:35 +0200 |
commit | 1226f7599fdfe63a08ee0fbc2b0e3e296f38f2da (patch) | |
tree | ab15cd76c0267fcb9e0330e227f898bec09256db | |
parent | 0dda99e77f9f1d7724a2fec11b4fab48b2f62456 (diff) | |
download | NorthstarMods-1226f7599fdfe63a08ee0fbc2b0e3e296f38f2da.tar.gz NorthstarMods-1226f7599fdfe63a08ee0fbc2b0e3e296f38f2da.zip |
Remove annoying recurring print from `chatroom.nut` (#676)v1.19.4-rc1
Commented out instead of fully removing
-rw-r--r-- | Northstar.Client/mod/scripts/vscripts/ui/chatroom.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.Client/mod/scripts/vscripts/ui/chatroom.nut b/Northstar.Client/mod/scripts/vscripts/ui/chatroom.nut index b474f7a6..4e98ee8a 100644 --- a/Northstar.Client/mod/scripts/vscripts/ui/chatroom.nut +++ b/Northstar.Client/mod/scripts/vscripts/ui/chatroom.nut @@ -308,7 +308,7 @@ void function UICodeCallback_ShowUserInfo( string hardware, string userId ) { Signal( uiGlobal.signalDummy, "StopUserInfoLookups" ) - printt( "Showing user info for UID " + userId + " on hardware " + hardware ) + // printt( "Showing user info for UID " + userId + " on hardware " + hardware ) file.userInfoPanel_userId = userId file.userInfoPanel_hardware = hardware |