Compare commits

...

2 Commits

  1. 3
      sources/BaseAPI/API/Commands/CommandParser.uc
  2. 2
      sources/InfoQueryHandler/InfoQueryHandler.uc

3
sources/BaseAPI/API/Commands/CommandParser.uc

@ -627,6 +627,7 @@ private final function HashTable AutoResolveAlias(MutableText textValue, Text al
_.memory.Free(immutableValue);
// Add "value" key only after we've checked for "$" prefix
if (!textValue.StartsWithS("$")) {
result.SetItem(P("value"), immutableValue);
return result;
}
if (aliasSourceName.Compare(P("weapon"))) {
@ -641,7 +642,7 @@ private final function HashTable AutoResolveAlias(MutableText textValue, Text al
resolvedValue = _.alias.ResolveCustom(aliasSourceName, textValue, true);
}
result.SetItem(P("value"), resolvedValue);
_.memory.Free2(resolvedValue, immutableValue);
_.memory.Free(resolvedValue);
return result;
}

2
sources/InfoQueryHandler/InfoQueryHandler.uc

@ -318,7 +318,7 @@ defaultproperties
TACEDIA_RUNNING = 8
stringConstants(8) = "AcediaCore is running"
TACEDIA_VERSION = 9
stringConstants(9) = "AcediaCore version 0.1.dev8 - this is a development version, bugs and issues are expected"
stringConstants(9) = "AcediaCore version 0.1.alpha3 - this is a development version, bugs and issues are expected"
TACEDIA_CREDITS = 10
stringConstants(10) = "AcediaCore was developed by dkanus, 2019 - 2023"
TACEDIA_ACKNOWLEDGMENT = 11

Loading…
Cancel
Save