[Commands] Add #fish Command (#4136)

* [Commands] Add #fish Command

# Notes
- Adds `#fish` command.
- Allows operators to simulate fishing to see what they would get, consumes no bait.

* `use_bait`

* Update fish.cpp
This commit is contained in:
Alex King
2024-02-29 21:24:16 -05:00
committed by GitHub
parent 1cbda61891
commit c3d8d423fe
5 changed files with 16 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
#include "../client.h"
void command_fish(Client *c, const Seperator *sep)
{
c->GoFish(true, false);
}