Remove notifications

I'm done with this shit
This commit is contained in:
2024-12-17 14:34:50 +01:00
parent 6bf1c491a0
commit fa7a411e34
2 changed files with 4 additions and 9 deletions

View File

@@ -171,12 +171,7 @@ local function init()
"Растафаркрай", "Растафаркрай",
"Frosstmorn", "Frosstmorn",
"Pulsjkee", "Pulsjkee",
"Paskoo", "Paskoo"
"Totleta",
"Healleta",
"Deathleta",
"Shootleta",
"Stableta"
}), }),
stinkies = data.GetOrDefault(Heimdall_Data, { "config", "stinkies" }, { stinkies = data.GetOrDefault(Heimdall_Data, { "config", "stinkies" }, {
["Ahhahahh"] = true, ["Ahhahahh"] = true,

View File

@@ -291,9 +291,9 @@ function data.Whoer.Init()
local stinky = data.config.stinkies[name] local stinky = data.config.stinkies[name]
if stinky then if stinky then
player.stinky = true player.stinky = true
PlaySoundFile("Interface\\Sounds\\Domination.ogg", "Master") --PlaySoundFile("Interface\\Sounds\\Domination.ogg", "Master")
else else
PlaySoundFile("Interface\\Sounds\\Cloak.ogg", "Master") --PlaySoundFile("Interface\\Sounds\\Cloak.ogg", "Master")
end end
local err = Notify(player) local err = Notify(player)
@@ -332,7 +332,7 @@ function data.Whoer.Init()
for name, player in pairs(HeimdallStinkies) do for name, player in pairs(HeimdallStinkies) do
if player.lastSeenInternal + data.config.who.ttl < GetTime() then if player.lastSeenInternal + data.config.who.ttl < GetTime() then
NotifyGone(player) NotifyGone(player)
PlaySoundFile("Interface\\Sounds\\Uncloak.ogg", "Master") --PlaySoundFile("Interface\\Sounds\\Uncloak.ogg", "Master")
HeimdallStinkies[name] = nil HeimdallStinkies[name] = nil
end end
end end