Removed incorrect comments

This commit is contained in:
Chomp
2025-01-28 13:40:13 +00:00
parent dc0e29e8ef
commit 0f1a20507c
8 changed files with 3 additions and 23 deletions
@@ -36,7 +36,6 @@ public class HealthCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse OffraidEat(PmcData pmcData, OffraidEatRequestData info, string sessionID)
{
return _healthController.OffRaidEat(pmcData, info, sessionID);
@@ -49,7 +48,6 @@ public class HealthCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse OffraidHeal(PmcData pmcData, OffraidHealRequestData info, string sessionID)
{
return _healthController.OffRaidHeal(pmcData, info, sessionID);
@@ -62,7 +60,6 @@ public class HealthCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse HealthTreatment(PmcData pmcData, HealthTreatmentRequestData info, string sessionID)
{
return _healthController.HealthTreatment(pmcData, info, sessionID);
+1 -4
View File
@@ -1,4 +1,4 @@
using SptCommon.Annotations;
using SptCommon.Annotations;
using Core.Controllers;
using Core.Models.Eft.Common;
using Core.Models.Eft.ItemEvent;
@@ -17,7 +17,6 @@ public class NoteCallbacks(NoteController _noteController)
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse AddNote(PmcData pmcData, NoteActionData info, string sessionID)
{
return _noteController.AddNote(pmcData, info, sessionID);
@@ -30,7 +29,6 @@ public class NoteCallbacks(NoteController _noteController)
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse EditNote(PmcData pmcData, NoteActionData info, string sessionID)
{
return _noteController.EditNote(pmcData, info, sessionID);
@@ -43,7 +41,6 @@ public class NoteCallbacks(NoteController _noteController)
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse DeleteNote(PmcData pmcData, NoteActionData info, string sessionID)
{
return _noteController.DeleteNote(pmcData, info, sessionID);
@@ -1,4 +1,4 @@
using SptCommon.Annotations;
using SptCommon.Annotations;
using Core.Controllers;
using Core.Models.Eft.Common;
using Core.Models.Eft.Common.Request;
@@ -19,7 +19,6 @@ public class PrestigeCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public string GetPrestige(string url, EmptyRequestData info, string sessionID)
{
return _httpResponseUtil.GetBody(_prestigeController.GetPrestige(sessionID, info));
@@ -32,7 +31,6 @@ public class PrestigeCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public string ObtainPrestige(string url, List<ObtainPrestigeRequest> info, string sessionID)
{
_prestigeController.ObtainPrestige(sessionID, info);
+1 -7
View File
@@ -1,4 +1,4 @@
using SptCommon.Annotations;
using SptCommon.Annotations;
using Core.Controllers;
using Core.Models.Eft.Common;
using Core.Models.Eft.ItemEvent;
@@ -21,7 +21,6 @@ public class QuestCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse ChangeRepeatableQuest(PmcData pmcData, RepeatableQuestChangeRequest info, string sessionID)
{
return _repeatableQuestController.ChangeRepeatableQuest(pmcData, info, sessionID);
@@ -34,7 +33,6 @@ public class QuestCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse AcceptQuest(PmcData pmcData, AcceptQuestRequestData info, string sessionID)
{
if (info.Type == "repeatable")
@@ -50,7 +48,6 @@ public class QuestCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse CompleteQuest(PmcData pmcData, CompleteQuestRequestData info, string sessionID)
{
return _questController.CompleteQuest(pmcData, info, sessionID);
@@ -63,7 +60,6 @@ public class QuestCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse HandoverQuest(PmcData pmcData, HandoverQuestRequestData info, string sessionID)
{
return _questController.HandoverQuest(pmcData, info, sessionID);
@@ -76,7 +72,6 @@ public class QuestCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public string ListQuests(string url, ListQuestsRequestData info, string sessionID)
{
return _httpResponseUtil.GetBody(_questController.GetClientQuest(sessionID));
@@ -89,7 +84,6 @@ public class QuestCallbacks(
/// <param name="info"></param>
/// <param name="sessionID"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public string ActivityPeriods(string url, EmptyRequestData info, string sessionID)
{
return _httpResponseUtil.GetBody(_repeatableQuestController.GetClientRepeatableQuests(sessionID));
@@ -63,7 +63,6 @@ public class RepairController(
/// <param name="body">endpoint request data</param>
/// <param name="pmcData">player profile</param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public ItemEventRouterResponse RepairWithKit(
string sessionId,
RepairActionDataRequest body,
@@ -1078,7 +1078,6 @@ public class BotEquipmentModGenerator(
/// <param name="modSpawnRequest">Request data</param>
/// <param name="modPool">Pool of magazine tpls to filter</param>
/// <returns>Filtered pool of magazine tpls</returns>
/// <exception cref="NotImplementedException"></exception>
public IEnumerable<string> GetFilterdMagazinePoolByCapacity(ModToSpawnRequest modSpawnRequest, HashSet<string> modPool)
{
var weaponTpl = modSpawnRequest.Weapon[0].Template;
@@ -40,7 +40,6 @@ public class BotLootGenerator(
/// </summary>
/// <param name="botRole"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
private ItemSpawnLimitSettings GetItemSpawnLimitsForBot(string botRole)
{
var limits = GetItemSpawnLimitsForBotType(botRole);
@@ -365,7 +364,6 @@ public class BotLootGenerator(
/// </summary>
/// <param name="botInventory"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
private List<EquipmentSlots> GetAvailableContainersBotCanStoreItemsIn(BotBaseInventory botInventory)
{
List<EquipmentSlots> result = [EquipmentSlots.Pockets];
@@ -427,7 +425,6 @@ public class BotLootGenerator(
/// <param name="containersIdFull"></param>
/// <param name="totalValueLimitRub">Total value of loot allowed in roubles</param>
/// <param name="isPmc">Is bot being generated for a pmc</param>
/// <exception cref="NotImplementedException"></exception>
private void AddLootFromPool
(
Dictionary<string, double> pool,
@@ -583,7 +580,6 @@ public class BotLootGenerator(
/// </summary>
/// <param name="walletId"></param>
/// <returns></returns>
/// <exception cref="NotImplementedException"></exception>
public List<List<Item>> CreateWalletLoot(string walletId)
{
List<List<Item>> result = [];