Initial release - v1.0.0

This commit is contained in:
2026-08-23 17:38:34 +02:00
commit c50584b6b1
9 changed files with 622 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Changelog
## 1.0.0
Initial release.
### Features
- Automatic campfire refilling
- Automatic hearth refilling
- Automatic standing torch refilling
- Automatic wall torch refilling
- Automatic brazier refilling
- Supports colored torch variants
- Automatically detects the required fuel type
- Optional nearby container fuel usage
- Configurable refill radius
- Configurable refill threshold
- Refill-to-max or fixed refill amount
- Individual fireplace type toggles
+39
View File
@@ -0,0 +1,39 @@
# Auto Refill Fires
A lightweight BepInEx mod for Valheim that automatically refills nearby fireplaces and torches.
## Features
- Automatically refills nearby campfires
- Automatically refills hearths
- Automatically refills standing torches, including colored variants
- Automatically refills wall torches
- Automatically refills braziers
- Uses the correct fuel type automatically
- Can consume fuel from the player's inventory
- Optional support for nearby containers
- Configurable refill radius
- Configurable refill threshold
- Refill to maximum or by a fixed amount
- Individual enable/disable options for fireplace types
## Requirements
- Valheim
- BepInExPack Valheim
## Configuration
The configuration file is generated after launching the game once with the mod installed.
`BepInEx/config/simplifydave.autorefillfires.cfg`
## Installation
Install using r2modman / Thunderstore Mod Manager, or manually place `AutoRefillFires.dll` inside:
`BepInEx/plugins/AutoRefillFires/`
## License
MIT
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

+9
View File
@@ -0,0 +1,9 @@
{
"name": "AutoRefillFires",
"version_number": "__VERSION__",
"website_url": "https://github.com/LabodiDavid/AutoRefillFires",
"description": "Automatically refills nearby campfires, hearths and torches using fuel from the player inventory or optionally nearby containers.",
"dependencies": [
"denikson-BepInExPack_Valheim-5.4.2333"
]
}