Compare commits

...

2 Commits

Author SHA1 Message Date
f7862f09f9
Remove useless header comment 2024-10-30 14:40:57 +01:00
6f2104ad97
Dagger is now correct 2024-10-30 14:40:18 +01:00
2 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,3 @@
//
// Created by postaron on 29/02/24.
//
#include <catch2/catch_all.hpp>
#include <iostream>
#include <fstream>

View File

@ -141,7 +141,11 @@ namespace character {
return 0;
}
case tools::Dagger:
return 0;
if (inType == characType::Habilete) {
return 1;
} else {
return 0;
}
case tools::RockClimbingKit:
return inType == characType::Adresse ? 1 : 0;
case tools::SackOfGrain: