diff options
| author | hgh32 <39622638+hgh32@users.noreply.github.com> | 2026-04-11 22:23:22 -0400 |
|---|---|---|
| committer | hgh32 <39622638+hgh32@users.noreply.github.com> | 2026-04-16 00:24:28 -0400 |
| commit | 276f32f366c81dcd2341d4763f56746f7b721bb2 (patch) | |
| tree | d368d72f83efc5ed060b7bd793a20569aa3644c1 /src/Game/AI/Query/queryCheckMaterialValue.cpp | |
| parent | 1b79b4069dce6685b5ebd3905725b5857378ae9c (diff) | |
match more ai::Query
Diffstat (limited to 'src/Game/AI/Query/queryCheckMaterialValue.cpp')
| -rw-r--r-- | src/Game/AI/Query/queryCheckMaterialValue.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/Game/AI/Query/queryCheckMaterialValue.cpp b/src/Game/AI/Query/queryCheckMaterialValue.cpp index 0b0c9924..64415f22 100644 --- a/src/Game/AI/Query/queryCheckMaterialValue.cpp +++ b/src/Game/AI/Query/queryCheckMaterialValue.cpp @@ -1,5 +1,6 @@ #include "Game/AI/Query/queryCheckMaterialValue.h" #include <evfl/Query.h> +#include "KingSystem/GameData/gdtManager.h" namespace uking::query { @@ -7,9 +8,15 @@ CheckMaterialValue::CheckMaterialValue(const InitArg& arg) : ksys::act::ai::Quer CheckMaterialValue::~CheckMaterialValue() = default; -// FIXME: implement int CheckMaterialValue::doQuery() { - return -1; + int mat = 0; + auto* gdm = ksys::gdt::Manager::instance(); + if (!gdm) + return 0; + + gdm->getParamBypassPerm().get().getS32(&mat, "AllMaterialValue"); + + return mat > 0; } void CheckMaterialValue::loadParams(const evfl::QueryArg& arg) {} |
