aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
Diffstat (limited to 'server')
-rw-r--r--server/src/interaction.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/interaction.rs b/server/src/interaction.rs
index be291f67..624d9893 100644
--- a/server/src/interaction.rs
+++ b/server/src/interaction.rs
@@ -240,13 +240,13 @@ pub fn tick_slot(
return;
}
if a.position >= 1. {
- if let Recipe::Passive { output, .. } = &data.recipe(a.recipe) {
+ if let Recipe::Passive { output, warn, .. } = &data.recipe(a.recipe) {
*slot = output.map(|kind| Item { kind, active: None });
score.passive_recipes += 1;
*score_changed = true;
packet_out.push_back(PacketC::SetProgress {
player: None,
- warn: false,
+ warn: *warn,
item: slot_loc,
position: 1.,
speed: 0.,