View Single Post
07-08-20, 10:59 PM   #4
ircdirk
A Molten Giant
 
ircdirk's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2014
Posts: 823
Originally Posted by Kanegasi View Post
Carbonite.lua line 956 disables the function that would display the time played in chat.

Lua Code:
  1. function Nx:OnPlayer_login (event, ...)
  2.     Nx:OnParty_members_changed()   
  3.     Nx.Com:OnEvent (event)
  4.     Nx.InitWins()
  5.  
  6.     Nx.BlizzChatFrame_DisplayTimePlayed = ChatFrame_DisplayTimePlayed       -- Save func
  7.     ChatFrame_DisplayTimePlayed = function() end
  8.  
  9. --  RequestTimePlayed()     -- Blizz does not do anymore on login???
  10.     Nx.RequestTime = true;
  11. end

Not sure why anyone would disable or otherwise ruin functionality the player or other addons would want and/or rely on.
I think i will make fix for it. I did not disabled it
__________________
Carbonite and Carbonite Classic Developer
  Reply With Quote