]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/player.cpp
fixed a dragon bug where people could quit while they are fighting the dragon, come...
[irc/gameservirc.git] / gameserv / player.cpp
index b31f53284328f71a67c01d6628d45c4d8ded1e2a..acf94ab97248c44c9aadcdbc4f91d664ac7da9f4 100644 (file)
@@ -21,7 +21,6 @@ using namespace std;
 
 void Player::reset()
 {
-  item *tempItem;
   exp = 1;
   gold = 0;
   bank = 500;
@@ -43,9 +42,6 @@ void Player::reset()
   w = NULL;
   a = NULL;
   inventory->clear();
-  tempItem = findItemByID(3001);
-  inventory->addItem((*Items.begin()))->use(this); // Add the stick
-  inventory->addItem(tempItem)->use(this); // Add Clothes
 }
 
 Player::Player()