mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 09:36:19 +00:00
15 lines
286 B
Markdown
15 lines
286 B
Markdown
|
---
|
||
|
module: [kind=event] turtle_inventory
|
||
|
---
|
||
|
|
||
|
The @{turtle_inventory} event is fired when a turtle's inventory is changed.
|
||
|
|
||
|
## Example
|
||
|
Prints a message when the inventory is changed:
|
||
|
```lua
|
||
|
while true do
|
||
|
os.pullEvent("turtle_inventory")
|
||
|
print("The inventory was changed.")
|
||
|
end
|
||
|
```
|