MidnightNameplates 0.11.0.2 - Delve Config Syntax Fix

ROOT CAUSE
- Config.lua used invalid Lua syntax:
  MNP:GetPvEContext and MNP:GetPvEContext()
- The left side is a method call expression using ':' without arguments.
- Lua requires function existence checks to use '.':
  MNP.GetPvEContext and MNP:GetPvEContext()

FIX
- Corrected both invalid Delve Intelligence context checks.
- Audited Config.lua for any other MNP:<method> and patterns.
- No runtime/intelligence/profile behavior changed.

TEST
1. /reload.
2. /mnp opens without syntax error.
3. Open Intelligence page.
4. Current PvE Context text renders.
5. Enter/leave a Delve if available and verify DELVE detection.
