[Cleanup] Remove NPC::AddCash() from npc.cpp/npc.h (#3380)

# Notes
- This is unused.
This commit is contained in:
Alex King
2023-06-09 11:50:52 -04:00
committed by GitHub
parent f548aeddb2
commit 056e429100
2 changed files with 0 additions and 9 deletions
-8
View File
@@ -832,14 +832,6 @@ void NPC::AddCash(uint16 in_copper, uint16 in_silver, uint16 in_gold, uint16 in_
platinum = 0;
}
void NPC::AddCash()
{
copper = zone->random.Int(1, 100);
silver = zone->random.Int(1, 50);
gold = zone->random.Int(1, 10);
platinum = zone->random.Int(1, 5);
}
void NPC::RemoveCash() {
copper = 0;
silver = 0;