Disabling WonderSplashImage via SQL

Deadstarre

Expert
Joined
Nov 1, 2015
Messages
960
Location
New York
I attempted this a couple weeks ago and couldnt get it, im trying to disable the WonderSplashImage on a specific building. The column reads

Code:
 <Column name="WonderSplashImage" type="text" default="NULL"/>

but when I tried

Code:
UPDATE Buildings
SET WonderSplashImage = 'NULL'
WHERE Type = 'BUILDING_PYRAMID';

I get a popup error in-game when its built saying game cant locate the file NULL. I believe I tried updating it in a few different ways and every way gave the same type of error. any ideas?
 
'NULL' (with the quotes) is a string, NULL (without the quotes) is the special SQL value. You need to set the column to NULL (not 'NULL')
 
Top Bottom