Skip to content

Commit

Permalink
role limit 1 for psychopomp
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSammyM committed Jan 16, 2025
1 parent 4d6feca commit 7c1abcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/resources/roles.json
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@
"roleSets": ["town", "townCommon", "townSupport"],
"armor": false,
"aura": null,
"maxCount": null,
"maxCount": 1,
"canWriteDeathNote": false,
"canBeConvertedTo": [],
"chatMessages":[]
Expand Down
2 changes: 1 addition & 1 deletion server/src/game/role/psychopomp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub struct Psychopomp{
}


pub(super) const MAXIMUM_COUNT: Option<u8> = None;
pub(super) const MAXIMUM_COUNT: Option<u8> = Some(1);
pub(super) const DEFENSE: DefensePower = DefensePower::None;

impl RoleStateImpl for Psychopomp {
Expand Down

0 comments on commit 7c1abcb

Please sign in to comment.