Rule_Relaunch: Fix return value in SetFreeCrew and SetInventoryTransfer

alut-include-path
Fulgen301 2017-04-22 09:58:59 +02:00
parent 38daafc99b
commit 7064d4f6fb
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ private func CheckDescription()
public func SetInventoryTransfer(bool transfer)
{
inventory_transfer = transfer;
return true;
return this;
}
public func GetInventoryTransfer()
@ -86,7 +86,7 @@ public func GetInventoryTransfer()
public func SetFreeCrew(bool free)
{
free_crew = free;
return true;
return this;
}
public func GetFreeCrew()