mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
56123591a0
* Update code guidelines for script_component * Update contributing documents for pull requests - Reflect true attribution practices - Reflect true merge process (this changed a long time ago) * Remove listed maintainer from component readmes We have almost never used these and serve as a source of confusion for new contributors.
18 lines
336 B
Markdown
18 lines
336 B
Markdown
ace_trenches
|
|
=================
|
|
|
|
Adds item 'ACE_entrenchingtool'
|
|
Adds 2 trenches; Envelope - Small & Envelop - Big
|
|
|
|
### Whitelist surfaces for digging
|
|
Single surfaces can be whitelisted by adding `ACE_canDig = 1` into `CfgSurfaces`.
|
|
Example:
|
|
```cpp
|
|
class CfgSurfaces {
|
|
class myAwesomeSurface {
|
|
ACE_canDig = 1;
|
|
};
|
|
};
|
|
```
|
|
|