Message1701

Author matthiaskrgr
Recipients
Date 2011-09-29.18:12:50
Content
Currently we check for a cookie to know if Koan is alive or not.
       if (has_cookie("koan_spared")) then 
which is the actual problem since we don't give the cookie when we "manually"
kill him.

I think the issue can be easily fixed by replacing
       if (has_cookie("koan_spared")) then 
with 
       if (npc_dead("Koan")) then
which directly checks if Koan is alive or not.
History
Date User Action Args
2011-09-29 18:12:50matthiaskrgrsetmessageid: <1317319970.77.0.386212538901.issue485@freedroid.org>
2011-09-29 18:12:50matthiaskrgrlinkissue485 messages
2011-09-29 18:12:50matthiaskrgrcreate