View Single Post
07-08-20, 11:40 AM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
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.
  Reply With Quote