mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-28 12:40:28 +00:00
remove ShowNotification from FactReveal
This commit is contained in:
parent
8abddb4e8c
commit
43e56d30cd
@ -4,6 +4,5 @@
|
||||
{
|
||||
public string Id;
|
||||
public bool SaveGame;
|
||||
public bool ShowNotification;
|
||||
}
|
||||
}
|
@ -41,7 +41,7 @@ namespace QSB.LogSync.Messages
|
||||
{
|
||||
if (QSBCore.IsHost)
|
||||
{
|
||||
QSBWorldSync.AddFactReveal(FactId, SaveGame, ShowNotification);
|
||||
QSBWorldSync.AddFactReveal(FactId, SaveGame);
|
||||
}
|
||||
}
|
||||
|
||||
@ -49,7 +49,7 @@ namespace QSB.LogSync.Messages
|
||||
{
|
||||
if (QSBCore.IsHost)
|
||||
{
|
||||
QSBWorldSync.AddFactReveal(FactId, SaveGame, ShowNotification);
|
||||
QSBWorldSync.AddFactReveal(FactId, SaveGame);
|
||||
}
|
||||
|
||||
if (!WorldObjectManager.AllObjectsReady)
|
||||
|
@ -144,7 +144,7 @@ namespace QSB.WorldSync
|
||||
DialogueConditions[name] = state;
|
||||
}
|
||||
|
||||
public static void AddFactReveal(string id, bool saveGame, bool showNotification)
|
||||
public static void AddFactReveal(string id, bool saveGame)
|
||||
{
|
||||
if (!QSBCore.IsHost)
|
||||
{
|
||||
@ -160,8 +160,7 @@ namespace QSB.WorldSync
|
||||
ShipLogFacts.Add(new FactReveal
|
||||
{
|
||||
Id = id,
|
||||
SaveGame = saveGame,
|
||||
ShowNotification = showNotification
|
||||
SaveGame = saveGame
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user