Some more clean-up and fixes

This commit is contained in:
hondacrx
2022-07-20 11:30:46 -04:00
parent 17f3eab338
commit 7affefe05c
4 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -2124,7 +2124,7 @@ namespace Game.Chat
if (args[0] == '[') // [name] manual form
{
string itemName = args.NextString("]");
string itemName = args.NextString("]").Substring(1);
if (!string.IsNullOrEmpty(itemName))
{
+3
View File
@@ -250,6 +250,9 @@ namespace Game.Entities
return;
}
if (!extraAttacksTargets.ContainsKey(targetGUID))
extraAttacksTargets[targetGUID] = 0;
extraAttacksTargets[targetGUID] += count;
}