minor fixes, altars can heal
This commit is contained in:
parent
fe19a449e3
commit
397aa07d60
7 changed files with 18 additions and 9 deletions
|
|
@ -45,7 +45,11 @@ macro_rules! apply_flags {
|
|||
"BLOCKS_VISIBILITY" => $eb = $eb.with(BlocksVisibility {}),
|
||||
"ENTRY_TRIGGER" => $eb = $eb.with(EntryTrigger {}),
|
||||
"SINGLE_ACTIVATION" => $eb = $eb.with(SingleActivation {}),
|
||||
"DOOR" => $eb = $eb.with(Door { open: false }),
|
||||
"DOOR" => {
|
||||
$eb = $eb.with(Door { open: false });
|
||||
$eb = $eb.with(BlocksVisibility {});
|
||||
$eb = $eb.with(BlocksTile {});
|
||||
}
|
||||
// RESTORES NUTRITION
|
||||
"FOOD" => $eb = $eb.with(ProvidesNutrition {}),
|
||||
// IS DELETED ON USE
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue