I noticed that keeperfx changed samurai to require atleast a torture room to attract, a quick look in the config files confirms it.
Code:
EntranceRoom = TRAINING BARRACKS TORTURE
RoomSlabsRequired = 9 6 1
This breaks one of my custom levels a bit, so i was looking for ways to revert it.
I found the Command SET_CREATURE_CONFIGURATION, but it doesn't seem to work for the EntranceRoom property
Code:
SET_CREATURE_CONFIGURATION(SAMURAI,EntranceRoom,TRAINING BARRACKS NULL)
SET_CREATURE_CONFIGURATION(SAMURAI,RoomSlabsRequired,9 6 0)
I've also tried seperating the values into different arguments
Code:
SET_CREATURE_CONFIGURATION(SAMURAI,EntranceRoom,TRAINING,BARRACKS,NULL)
SET_CREATURE_CONFIGURATION(SAMURAI,RoomSlabsRequired,9,6,0)
But it also doesn't seem to work, the same command functions properly for setting other stuff like AttackPreference just fine.
I've also found and tried the SET_CREATURE_PROPERTY command, but it doesn't work either.
Anyone got tips on how i can set this up without a custom Samurai config file?