View Single Post
  #2  
Old 09-26-2008, 11:43 PM
seveianrex
Sarnak
 
Join Date: Sep 2008
Location: asdf
Posts: 60
Default

Sorry, need to post a change to this:

in {spells.cpp}

The line:
Code:
&& !spell_target // null ptr crash safeguard
Is supposed to read:
Code:
&& spell_target != NULL // null ptr crash safeguard
Reply With Quote