update pack.get_info

This commit is contained in:
MihailRis
2025-01-02 11:45:28 +03:00
parent e976b2078e
commit e2f6c263e7
3 changed files with 8 additions and 15 deletions
+2 -2
View File
@@ -76,14 +76,14 @@ pack.get_base_packs() -> strings array
Returns the id of all base packages (non-removeable)
```python
```lua
pack.get_info(packid: str) -> {
id: str,
title: str,
creator: str,
description: str,
version: str,
icon: str,
icon: str, -- not available in headless mode
dependencies: optional strings array
}
```
+1 -1
View File
@@ -70,7 +70,7 @@ pack.get_info(packid: str) -> {
creator: str,
description: str,
version: str,
icon: str,
icon: str, -- отсутствует в headless режиме
dependencies: опциональный массив строк
}
```