mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
fix a warning
This commit is contained in:
parent
e8e484bbca
commit
c9e03405f2
@ -346,7 +346,7 @@ public:
|
||||
DigAtTile(int3 Tile) : CGoal (Goals::DIG_AT_TILE) {tile = Tile; priority = 20;};
|
||||
TGoalVec getAllPossibleSubgoals() override {return TGoalVec();};
|
||||
TSubgoal whatToDoToAchieve() override;
|
||||
bool operator== (DigAtTile &g) { g.goalType == goalType && g.tile == tile; }
|
||||
bool operator== (DigAtTile &g) { return g.goalType == goalType && g.tile == tile; }
|
||||
};
|
||||
|
||||
class CIssueCommand : public CGoal<CIssueCommand>
|
||||
|
Loading…
Reference in New Issue
Block a user