Page MenuHomeFeedback Tracker

[1.10.153507] There is no information about actions "Pack" in .ADM file for tents, shelters
New, NormalPublic

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
Config

Event Timeline

IMHO need to add GetAdminLogMessage() function to:

  1. 4_world\classes\useractionscomponent\actions\interact\actionpacktent.c
  2. 4_world\classes\useractionscomponent\actions\interact\actionpackshelter.c

Just add next code in scripts\4_world\classes\useractionscomponent\actions\interact\actionpacktent.c

override string GetAdminLogMessage(ActionData action_data)
{
  return " packed " + action_data.m_Target.GetParent().GetDisplayName();
}

And add next code in scripts\4_world\classes\useractionscomponent\actions\interact\actionpackshelter.c

override string GetAdminLogMessage(ActionData action_data)
{
  return " packed " + action_data.m_Target.GetObject().GetDisplayName();
}

@Geez please send this info to devs

1.13.154013
Same