Skip to content

Commit

Permalink
Merge pull request #46045 from 8street/delete_unused_feather_flag
Browse files Browse the repository at this point in the history
Delete unused feather flag
  • Loading branch information
ZhilkinSerg authored Dec 14, 2020
2 parents e75d19c + 9d43597 commit abf2fc3
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion data/json/monsters/bird.json
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,6 @@
"fear_triggers": [ "SOUND", "PLAYER_CLOSE", "FRIEND_ATTACKED", "FRIEND_DIED", "FIRE", "HURT" ],
"death_function": [ "NORMAL" ],
"biosignature": { "biosig_item": "feces_bird", "biosig_timer": 4 },
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "FLIES", "FEATHER", "SWARMS", "BIRDFOOD" ]
"flags": [ "SEES", "HEARS", "SMELLS", "ANIMAL", "PATH_AVOID_DANGER_1", "WARM", "FLIES", "SWARMS", "BIRDFOOD" ]
}
]
1 change: 0 additions & 1 deletion doc/JSON_FLAGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,6 @@ Other monster flags.
- ```ELECTRIC``` Shocks unarmed attackers.
- ```ELECTRONIC``` e.g. A Robot; affected by emp blasts and other stuff.
- ```FAT``` May produce fat when butchered.
- ```FEATHER``` May produce feathers when butchered.
- ```FILTHY``` Any clothing it drops will be filthy. The squeamish trait prevents wearing clothing with this flag, one can't craft anything from filthy components, and wearing filthy clothes may result in infection if hit in melee.
- ```FIREPROOF``` Immune to fire.
- ```FIREY``` Burns stuff and is immune to fire.
Expand Down
1 change: 0 additions & 1 deletion src/monstergenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ std::string enum_to_string<m_flag>( m_flag data )
case MF_FUR: return "FUR";
case MF_LEATHER: return "LEATHER";
case MF_WOOL: return "WOOL";
case MF_FEATHER: return "FEATHER";
case MF_CBM_CIV: return "CBM_CIV";
case MF_BONES: return "BONES";
case MF_FAT: return "FAT";
Expand Down
1 change: 0 additions & 1 deletion src/mtype.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ enum m_flag : int {
MF_FUR, // May produce fur when butchered
MF_LEATHER, // May produce leather when butchered
MF_WOOL, // May produce wool when butchered
MF_FEATHER, // May produce feather when butchered
MF_BONES, // May produce bones and sinews when butchered; if combined with POISON flag, tainted bones, if combined with HUMAN, human bones
MF_FAT, // May produce fat when butchered; if combined with POISON flag, tainted fat
MF_CONSOLE_DESPAWN, // Despawns when a nearby console is properly hacked
Expand Down

0 comments on commit abf2fc3

Please sign in to comment.