Adding to the Authors file

This commit is contained in:
WolfGaming
2014-05-17 18:46:14 +00:00
parent 00698cefff
commit 75e13592b2
2 changed files with 3 additions and 4 deletions

View File

@@ -64,6 +64,7 @@ Also thanks to:
* Raymond Martineau (mart0258) * Raymond Martineau (mart0258)
* Reaperrr * Reaperrr
* Riderr3 * Riderr3
* Rikhardur Bjarni Einarsson (WolfGaming)
* Sascha Biedermann (bidifx) * Sascha Biedermann (bidifx)
* Sebastien Kerguen (xanax) * Sebastien Kerguen (xanax)
* Simon Verbeke (Saticmotion) * Simon Verbeke (Saticmotion)

View File

@@ -164,14 +164,12 @@ namespace OpenRA.Mods.RA
public void PrerequisitesItemHidden(string key) public void PrerequisitesItemHidden(string key)
{ {
var ps = Produceable[self.World.Map.Rules.Actors[key]]; Produceable[self.World.Map.Rules.Actors[key]].Visible = false;
ps.Visible = false;
} }
public void PrerequisitesItemVisable(string key) public void PrerequisitesItemVisable(string key)
{ {
var ps = Produceable[self.World.Map.Rules.Actors[key]]; Produceable[self.World.Map.Rules.Actors[key]].Visible = true;
ps.Visible = true;
} }
public ProductionItem CurrentItem() public ProductionItem CurrentItem()