Thread Tools Display Modes
08/05/19, 05:03 AM   #21
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,913
Yep, it's the chat output. Forgot to change a variable name from "state" to "toggleState".
Replace line 25 with:
Lua Code:
  1. d("Player map pings " .. stateTexts[toggleState])
  Reply With Quote
08/05/19, 10:42 AM   #22
NeuroticPixels
Addon Addict
 
NeuroticPixels's Avatar
Premium Member
Join Date: May 2019
Posts: 210
Originally Posted by Baertram View Post
Yep, it's the chat output. Forgot to change a variable name from "state" to "toggleState".
Replace line 25 with:
Lua Code:
  1. d("Player map pings " .. stateTexts[toggleState])
Thank you for fixing the error!
Unfortunately, the /mppoff command still isn't hiding the blue map pings.
  Reply With Quote
08/05/19, 11:00 AM   #23
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,913
Aye, I have switched the commands /mppon will actually hide it currently and /mppoff will show them again. My bad
You need to turn around the 2 lines here so they look like this:
Lua Code:
  1. SLASH_COMMANDS["/mppon"] = function() toggle_MapPingFromPlayers(false) end
  2.     SLASH_COMMANDS["/mppoff"] = function() toggle_MapPingFromPlayers(true) end

Updated the zip archive.
  Reply With Quote

ESOUI » AddOns » AddOn Search/Requests » Hide Map Ping Texture, Please!

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off