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)
* Reaperrr
* Riderr3
* Rikhardur Bjarni Einarsson (WolfGaming)
* Sascha Biedermann (bidifx)
* Sebastien Kerguen (xanax)
* Simon Verbeke (Saticmotion)

View File

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