Update of /cvsroot/arianne/stendhal/src/games/stendhal/server/maps/quests
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22831/src/games/stendhal/server/maps/quests
Modified Files:
PizzaDelivery.java
Log Message:
Adding hint about not letting pizza drop on the ground cause customers want it fresh. (In relation to bug ID: 3601092, "Dropping a delivery pizza will not allow you to pick it back")
Index: PizzaDelivery.java
===================================================================
RCS file: /cvsroot/arianne/stendhal/src/games/stendhal/server/maps/quests/PizzaDelivery.java,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** PizzaDelivery.java 4 Aug 2012 08:43:46 -0000 1.61
--- PizzaDelivery.java 17 Jan 2013 13:23:50 -0000 1.62
***************
*** 436,440 ****
+ ". Say \"pizza\" so that "
+ name
! + " knows that I sent you. Oh, and please wear this uniform on your way.");
player.setOutfit(UNIFORM, true);
player.setQuest(QUEST_SLOT, name + ";" + System.currentTimeMillis());
--- 436,440 ----
+ ". Say \"pizza\" so that "
+ name
! + " knows that I sent you. Oh, and please wear this uniform on your way and don't drop this " + data.flavor + " on the ground! Our customers want it fresh.");
player.setOutfit(UNIFORM, true);
player.setQuest(QUEST_SLOT, name + ";" + System.currentTimeMillis());
|