Blockland Forums > Help
JVS problem!
Wesley Williams:
--- Quote from: otto-san on November 06, 2011, 12:28:08 AM ---http://forum.blockland.us/index.php?topic=174437.0
--- End quote ---
That hasn't fixed anything for me.
Mocha Furrier:
--- Quote from: Wesley Williams on November 06, 2011, 01:08:47 AM ---That hasn't fixed anything for me.
--- End quote ---
I did that too...
Still blocks, not doors :/
dUMBELLS:
This problem is caused when running Slayer with JVS Content, due to conflicting fxDTSBrick::onPlant functions.
Heres a fix for the current version (v2) of Slayer
The actual problem was on lines 405-417 in Gamemode_Slayer/Dependencies/Brick.cs.
Used to be:
--- Code: --- function fxDtsBrick::onPlant(%brick)
{
parent::onAdd(%brick); <-----
%brick.schedule(15,setSlyrBrick,1);
}
function fxDtsBrick::onLoadPlant(%brick)
{
parent::onAdd(%brick); <-----
%brick.schedule(15,setSlyrBrick,0);
}
--- End code ---
Needs to be:
--- Code: --- function fxDtsBrick::onPlant(%brick)
{
parent::onPlant(%brick); <-----
%brick.schedule(15,setSlyrBrick,1);
}
function fxDtsBrick::onLoadPlant(%brick)
{
parent::onLoadPlant(%brick); <-----
%brick.schedule(15,setSlyrBrick,0);
}
--- End code ---
Greek2me:
--- Quote from: dUMBELLS on November 06, 2011, 10:45:06 AM ---This problem is caused when running Slayer with JVS Content, due to conflicting fxDTSBrick::onPlant functions.
Heres a fix for the current version (v2) of Slayer
The actual problem was on lines 405-417 in Gamemode_Slayer/Dependencies/Brick.cs.
--- End quote ---
Thanks for releasing that. I'll put a patch on the updater ASAP.
soba:
I lol'd @ the above problem